Commit 6a23efda authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

dbghelp: Replace inline static with static inline.

parent d8b24e36
...@@ -41,14 +41,14 @@ ...@@ -41,14 +41,14 @@
WINE_DEFAULT_DEBUG_CHANNEL(dbghelp); WINE_DEFAULT_DEBUG_CHANNEL(dbghelp);
WINE_DECLARE_DEBUG_CHANNEL(dbghelp_symt); 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;
if (a1 < a2) return -1; if (a1 < a2) return -1;
return 0; 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; ULONG64 ref;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment