commit | 379570934490b1ae2548ebc9931a3965d976588e | [log] [tgz] |
---|---|---|
author | Robert Shearman <rob@codeweavers.com> | Fri Jun 10 19:54:46 2005 +0000 |
committer | Alexandre Julliard <julliard@winehq.org> | Fri Jun 10 19:54:46 2005 +0000 |
tree | 2b97efaac6f9a5375aca58c91ef42f8688aee3da | |
parent | 2a19883857e2cddbd4b9ef8b125445afcee06c48 [diff] [blame] |
Change code style of form "if( x )" to "if (x)" for consistency.
diff --git a/server/thread.c b/server/thread.c index b021dc0..5f4fdee 100644 --- a/server/thread.c +++ b/server/thread.c
@@ -419,7 +419,7 @@ struct wait_queue_entry *entry = wait->queues; /* Suspended threads may not acquire locks */ - if( thread->process->suspend + thread->suspend > 0 ) return -1; + if (thread->process->suspend + thread->suspend > 0) return -1; assert( wait ); if (wait->flags & SELECT_ALL)