From 2d8f252def312f596f97d1eefbf546e3dcdd17ec Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Mon, 4 May 2009 14:54:44 +0200 Subject: [PATCH] msctf/tests: Move 'inline' right after the storage specifier. --- dlls/msctf/tests/inputprocessor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msctf/tests/inputprocessor.c b/dlls/msctf/tests/inputprocessor.c index be53391fbf1..9f2900a994b 100644 --- a/dlls/msctf/tests/inputprocessor.c +++ b/dlls/msctf/tests/inputprocessor.c @@ -447,7 +447,7 @@ static void test_Activate(void) todo_wine ok(SUCCEEDED(hr),"Failed to Activate text service\n"); } -static int inline check_context_refcount(ITfContext *iface) +static inline int check_context_refcount(ITfContext *iface) { IUnknown_AddRef(iface); return IUnknown_Release(iface);