loader: Replace inline static with static inline

Andrew Talbot Andrew.Talbot at talbotville.com
Mon Mar 26 14:27:22 CDT 2007


Changelog:
    loader: Replace inline static with static inline.

diff -urN a/loader/kthread.c b/loader/kthread.c
--- a/loader/kthread.c	2006-12-20 19:47:15.000000000 +0000
+++ b/loader/kthread.c	2007-03-26 20:24:17.000000000 +0100
@@ -167,7 +167,7 @@
  *
  * Get a temporary stack address to run the thread exit code on.
  */
-inline static char *get_temp_stack(void)
+static inline char *get_temp_stack(void)
 {
     unsigned int next = interlocked_xchg_add( &next_temp_stack, 1 );
     return temp_stacks[next % NB_TEMP_STACKS] + TEMP_STACK_SIZE;



More information about the wine-patches mailing list