[PATCH] revision.c: Fix a sparse warning
From: Ramsay Jones <hidden>
Date: 2016-06-15 22:58:15
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Ramsay Jones <hidden>
Date: 2016-06-15 22:58:15
Subsystem:
the rest · Maintainer:
Linus Torvalds
Sparse issues an "symbol 'saved_parents_slab' was not declared. Should
it be static?" warning. In order to suppress the warning, since this
symbol does not require more than file visibility, we simply add the
static modifier to its declaration.
Signed-off-by: Ramsay Jones <redacted>
---
Hi Thomas,
In addition to the gcc warning, sparse weighs in with this warning,
provoked by commit 3b3d83e5 ("[PERHAPS LIKE THIS] log: use true parents
for diff even when rewriting", 22-07-2013).
If you update this commit, could you please squash this into the new patch.
Thanks!
ATB,
Ramsay Jones
revision.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/revision.c b/revision.c
index f242363..fa355d0 100644
--- a/revision.c
+++ b/revision.c@@ -3074,7 +3074,7 @@ void put_revision_mark(const struct rev_info *revs, const struct commit *commit) } define_commit_slab(saved_parents, struct commit_list *); -struct saved_parents saved_parents_slab; +static struct saved_parents saved_parents_slab; static int saved_parents_initialized; void save_parents(struct commit *commit)
--
1.8.3