diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2016-04-29 15:55:33 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2016-04-29 15:55:33 +0200 |
commit | f2773b0319dda871627a7c87077d786a0a9c4b72 (patch) | |
tree | 2762fdf802609a1d8836caf22bc5dc7bdd463548 | |
parent | b8af751b0108edcad02bc59cec496b1d7808b0e1 (diff) |
minor style fix
-rw-r--r-- | stagit.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -708,7 +708,7 @@ writefilestree(FILE *fp, git_tree *tree, const char *branch, const char *path) else fprintf(fp, "%juB", (uintmax_t)filesize); fputs("</td></tr>\n", fp); - } else if (git_submodule_lookup(&module, repo, entryname) == 0) { + } else if (!git_submodule_lookup(&module, repo, entryname)) { fputs("<tr><td>m---------</td><td>", fp); if ((moduleurl = git_submodule_url(module))) { fprintf(fp, "<a class=\"module\" href=\"%s\">", |