[PATCH] pack-objects: Fix compilation with NO_PTHREDS
From: Michał Kiedrowicz <hidden>
Date: 2016-06-15 22:53:08
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Michał Kiedrowicz <hidden>
Date: 2016-06-15 22:53:08
Subsystem:
the rest · Maintainer:
Linus Torvalds
It looks like commit 99fb6e04 (pack-objects: convert to use parse_options(), 2012-02-01) moved the #ifdef NO_PTHREDS around but hasn't noticed that the 'arg' variable no longer is available. Signed-off-by: Michał Kiedrowicz <redacted> --- builtin/pack-objects.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/builtin/pack-objects.c b/builtin/pack-objects.c
index db09cf7..71af246 100644
--- a/builtin/pack-objects.c
+++ b/builtin/pack-objects.c@@ -2449,7 +2449,7 @@ int cmd_pack_objects(int argc, const char **argv, const char *prefix) die("bad pack compression level %d", pack_compression_level); #ifdef NO_PTHREADS if (delta_search_threads != 1) - warning("no threads support, ignoring %s", arg); + warning("no threads support, ignoring --threads"); #endif if (!pack_to_stdout && !pack_size_limit) pack_size_limit = pack_size_limit_cfg;
--
1.7.8.4