From f2773b0319dda871627a7c87077d786a0a9c4b72 Mon Sep 17 00:00:00 2001 From: Hiltjo Posthuma Date: Fri, 29 Apr 2016 15:55:33 +0200 Subject: [PATCH] minor style fix --- stagit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stagit.c b/stagit.c index 206dca1..1102915 100644 --- a/stagit.c +++ b/stagit.c @@ -708,7 +708,7 @@ writefilestree(FILE *fp, git_tree *tree, const char *branch, const char *path) else fprintf(fp, "%juB", (uintmax_t)filesize); fputs("\n", fp); - } else if (git_submodule_lookup(&module, repo, entryname) == 0) { + } else if (!git_submodule_lookup(&module, repo, entryname)) { fputs("m---------", fp); if ((moduleurl = git_submodule_url(module))) { fprintf(fp, "", -- 2.30.2