server: Replace inline static with static inline.
diff --git a/server/mapping.c b/server/mapping.c
index 9b123e2..566f6dc 100644
--- a/server/mapping.c
+++ b/server/mapping.c
@@ -266,7 +266,7 @@
 }
 
 /* get the size of the unix file associated with the mapping */
-inline static int get_file_size( struct file *file, file_pos_t *size )
+static inline int get_file_size( struct file *file, file_pos_t *size )
 {
     struct stat st;
     int unix_fd = get_file_unix_fd( file );