Navigation Menu

Skip to content

Commit

Permalink
Put only one space before "\" for continuaus line
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jun 14, 2013
1 parent b8534f2 commit f058fac
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/groonga_in.h
Expand Up @@ -380,20 +380,20 @@ typedef struct
MUTEX_LOCK((c).waiters_count_lock_); \
{ \
int have_waiters = (c).waiters_count_ > 0; \
if ((c).waiters_count_ > 0) { \
if ((c).waiters_count_ > 0) { \
(c).was_broadcast_ = 1; \
have_waiters = 1; \
} \
if (have_waiters) {\
if (have_waiters) { \
ReleaseSemaphore((c).sema_, (c).waiters_count_, 0); \
MUTEX_UNLOCK((c).waiters_count_lock_); \
WaitForSingleObject((c).waiters_done_, INFINITE); \
(c).was_broadcast_ = 0; \
} \
else { \
MUTEX_UNLOCK((c).waiters_count_lock_); \
}\
}\
} \
} \
} while (0)

#define COND_WAIT(c,m) do { \
Expand All @@ -411,8 +411,8 @@ typedef struct
} \
else { \
WaitForSingleObject((m), FALSE); \
}\
}\
} \
} \
} while (0)

#else /* WIN32 */
Expand Down

0 comments on commit f058fac

Please sign in to comment.