jscript: Move 'inline' to the beginning of the declaration.

This commit is contained in:
Michael Stefaniuc 2012-10-15 11:26:48 +02:00 committed by Alexandre Julliard
parent 60db122133
commit f3d15811b4
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}