Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2007-09-15 09:30:20 +0400
committerJunio C Hamano <gitster@pobox.com>2007-09-15 09:30:20 +0400
commite1ef867328bd7d2cd67499ac30479821bdf96662 (patch)
tree3bdcaf63bd6e9a4208b8b1c43788713cb704f44a /builtin-pack-objects.c
parent3c70183918d97eda06ae847cd7432fd23257caea (diff)
builtin-pack-objects.c: avoid bogus gcc warnings
These empty statement marcos can solicit bogus "statement with no effect" warnings; squelch them. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-pack-objects.c')
-rw-r--r--builtin-pack-objects.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/builtin-pack-objects.c b/builtin-pack-objects.c
index b126fc8e72..a15906bdb2 100644
--- a/builtin-pack-objects.c
+++ b/builtin-pack-objects.c
@@ -1311,12 +1311,12 @@ static pthread_mutex_t progress_mutex = PTHREAD_MUTEX_INITIALIZER;
#else
-#define read_lock() 0
-#define read_unlock() 0
-#define cache_lock() 0
-#define cache_unlock() 0
-#define progress_lock() 0
-#define progress_unlock() 0
+#define read_lock() (void)0
+#define read_unlock() (void)0
+#define cache_lock() (void)0
+#define cache_unlock() (void)0
+#define progress_lock() (void)0
+#define progress_unlock() (void)0
#endif