From 6eba82d41892b6571e0caecd1a644cff4b727968 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Mon, 19 Mar 2007 19:46:38 +0000 Subject: [PATCH] dsound: Replace inline static with static inline. --- dlls/dsound/dsound_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dsound/dsound_main.c b/dlls/dsound/dsound_main.c index 0a2803d5397..94d2122b596 100644 --- a/dlls/dsound/dsound_main.c +++ b/dlls/dsound/dsound_main.c @@ -115,7 +115,7 @@ int ds_default_bits_per_sample = 8; * Get a config key from either the app-specific or the default config */ -inline static DWORD get_config_key( HKEY defkey, HKEY appkey, const char *name, +static inline DWORD get_config_key( HKEY defkey, HKEY appkey, const char *name, char *buffer, DWORD size ) { if (appkey && !RegQueryValueExA( appkey, name, 0, NULL, (LPBYTE)buffer, &size )) return 0;