Module: wine Branch: master Commit: f3d15811b434eeb1a6275e4c8677a7a58dd9242b URL: http://source.winehq.org/git/wine.git/?a=commit;h=f3d15811b434eeb1a6275e4c86... Author: Michael Stefaniuc <mstefani(a)redhat.de> Date: Mon Oct 15 11:26:48 2012 +0200 jscript: Move 'inline' to the beginning of the declaration. --- dlls/jscript/jsstr.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/jscript/jsstr.h b/dlls/jscript/jsstr.h index 48a1d8d..ca3b5d9 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; }