diff options
| author | Junio C Hamano <gitster@pobox.com> | 2020-05-01 13:39:56 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2020-05-01 13:39:56 -0700 |
| commit | bf04590ecdf87d0ad034f7fbff36a10eb20637cb (patch) | |
| tree | 0eec97b7ca3c86fffe3d510ed124789d09c77a5a /progress.c | |
| parent | Merge branch 'mt/doc-worktree-ref' (diff) | |
| parent | progress.c: silence cgcc suggestion about internal linkage (diff) | |
| download | git-bf04590ecdf87d0ad034f7fbff36a10eb20637cb.tar.gz git-bf04590ecdf87d0ad034f7fbff36a10eb20637cb.zip | |
Merge branch 'dd/sparse-fixes'
Compilation fix.
* dd/sparse-fixes:
progress.c: silence cgcc suggestion about internal linkage
graph.c: limit linkage of internal variable
compat/regex: move stdlib.h up in inclusion chain
test-parse-pathspec-file.c: s/0/NULL/ for pointer type
Diffstat (limited to 'progress.c')
| -rw-r--r-- | progress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progress.c b/progress.c index 19805ac646..75633e9c5e 100644 --- a/progress.c +++ b/progress.c @@ -8,6 +8,7 @@ * published by the Free Software Foundation. */ +#define GIT_TEST_PROGRESS_ONLY #include "cache.h" #include "gettext.h" #include "progress.h" @@ -52,7 +53,6 @@ static volatile sig_atomic_t progress_update; */ int progress_testing; uint64_t progress_test_ns = 0; -void progress_test_force_update(void); /* To silence -Wmissing-prototypes */ void progress_test_force_update(void) { progress_update = 1; |
