diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-12-09 23:56:42 +0100 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2015-12-09 23:56:42 +0100 |
commit | 23fdbb0c8cd8f875e678c17ef79919a22d704c7a (patch) | |
tree | f990d7f100c24297b15a1b78c2fd4e2b4a14790e | |
parent | 27397b310d2aea881f5064103bb449464329b00c (diff) |
fix warning + minor style
-rw-r--r-- | urmoms.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -533,7 +533,6 @@ writeblob(const char *path) { char htmlpath[PATH_MAX]; char refpath[PATH_MAX]; - char *relp; git_object *obj = NULL; FILE *fp; @@ -557,7 +556,9 @@ writeblob(const char *path) fputs("</pre>\n", fp); writefooter(fp); fclose(fp); + relpath = ""; + return 0; } |