Module: wine Branch: master Commit: 6a23efdaa27092b4512784200b901ed944bce83a URL: http://source.winehq.org/git/wine.git/?a=commit;h=6a23efdaa27092b4512784200b...
Author: Andrew Talbot Andrew.Talbot@talbotville.com Date: Mon Mar 19 19:44:25 2007 +0000
dbghelp: Replace inline static with static inline.
---
dlls/dbghelp/symbol.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/dbghelp/symbol.c b/dlls/dbghelp/symbol.c index d298b50..2907bf3 100644 --- a/dlls/dbghelp/symbol.c +++ b/dlls/dbghelp/symbol.c @@ -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;