From f3d15811b434eeb1a6275e4c8677a7a58dd9242b Mon Sep 17 00:00:00 2001 From: Michael Stefaniuc Date: Mon, 15 Oct 2012 11:26:48 +0200 Subject: [PATCH] jscript: Move 'inline' to the beginning of the declaration. --- dlls/jscript/jsstr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/jscript/jsstr.h b/dlls/jscript/jsstr.h index 48a1d8d1213..ca3b5d9e3b1 100644 --- a/dlls/jscript/jsstr.h +++ b/dlls/jscript/jsstr.h @@ -28,7 +28,7 @@ struct _jsstr_t { #define JSSTR_FLAG_NULLBSTR 1 -static unsigned inline jsstr_length(jsstr_t *str) +static inline unsigned jsstr_length(jsstr_t *str) { return str->length_flags >> JSSTR_LENGTH_SHIFT; }