From af6f08ce6ae77ecba16bea764ad3a193766e6d07 Mon Sep 17 00:00:00 2001 From: reimar Date: Sun, 10 Jan 2010 19:59:36 +0000 Subject: Place a volatile at a more appropriate place. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30268 b3059339-0415-0410-9bf9-f77b7e298cf2 --- loader/win32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loader/win32.c b/loader/win32.c index fa97d29fbb..70070832f6 100644 --- a/loader/win32.c +++ b/loader/win32.c @@ -5328,7 +5328,7 @@ static WIN_BOOL WINAPI ext_stubs(void) { volatile int idx = 0x0deadabc; // make sure gcc does not do eip-relative call or something like that - volatile void (*my_printf)(char *, char *) = (void *)0xdeadfbcd; + void (* volatile my_printf)(char *, char *) = (void *)0xdeadfbcd; my_printf("Called unk_%s\n", export_names[idx]); return 0; } -- cgit v1.2.3