dbghelp: Replace inline static with static inline

Andrew Talbot Andrew.Talbot at talbotville.com
Mon Mar 19 14:44:25 CDT 2007


Changelog:
    dbghelp: Replace inline static with static inline.

diff -urN a/dlls/dbghelp/symbol.c b/dlls/dbghelp/symbol.c
--- a/dlls/dbghelp/symbol.c	2007-03-14 17:36:26.000000000 +0000
+++ b/dlls/dbghelp/symbol.c	2007-03-19 19:31:17.000000000 +0000
@@ -41,14 +41,14 @@
 WINE_DEFAULT_DEBUG_CHANNEL(dbghelp);
 WINE_DECLARE_DEBUG_CHANNEL(dbghelp_symt);
 
-inline static int cmp_addr(ULONG64 a1, ULONG64 a2)
+static inline int cmp_addr(ULONG64 a1, ULONG64 a2)
 {
     if (a1 > a2) return 1;
     if (a1 < a2) return -1;
     return 0;
 }
 
-inline static int cmp_sorttab_addr(const struct module* module, int idx, ULONG64 addr)
+static inline int cmp_sorttab_addr(const struct module* module, int idx, ULONG64 addr)
 {
     ULONG64     ref;
 



More information about the wine-patches mailing list