Commit 33ca3565 by Carlos Martín Nieto

Merge pull request #2556 from sbc100/fix_warnings

Fix warnings in thread-utils.h when building without -DTHREADSAFE=ON
parents 2139c9b7 ccd8ba9b
......@@ -183,8 +183,8 @@ GIT_INLINE(int64_t) git_atomic64_add(git_atomic64 *a, int64_t addend)
/* Pthreads Mutex */
#define git_mutex unsigned int
#define git_mutex_init(a) 0
#define git_mutex_lock(a) 0
static int git_mutex_init(git_mutex* mutex) { GIT_UNUSED(mutex); return 0; }
static int git_mutex_lock(git_mutex* mutex) { GIT_UNUSED(mutex); return 0; }
#define git_mutex_unlock(a) (void)0
#define git_mutex_free(a) (void)0
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment