diff options
author | Rich Walsh <DragText@E-vertise.Com> | 2010-08-07 03:53:24 +0300 |
---|---|---|
committer | M Joonas Pihlaja <jpihlaja@cc.helsinki.fi> | 2010-08-08 22:29:40 +0300 |
commit | d0284687b32161212d6bc52309e2d5bb516dc3e8 (patch) | |
tree | 37b1cf82b317d8e1b026a433243c1a7a7b256e32 | |
parent | cb30340064a2ff24dc408e185c5a309a14f6c78c (diff) |
os2: Tweak an inline declaration.
C99 and cairo prefers "static inline <return type>" rather
than "static <return type> inline".
Thread "OS/2 surface fixes" on cairo-l:
http://lists.cairographics.org/archives/cairo/2010-July/020343.html
-rw-r--r-- | src/cairo-os2-surface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-os2-surface.c b/src/cairo-os2-surface.c index cd909bdff..0e83545e6 100644 --- a/src/cairo-os2-surface.c +++ b/src/cairo-os2-surface.c @@ -68,7 +68,7 @@ /* Initialization counter: */ static int cairo_os2_initialization_count = 0; -static void inline +static inline void DisableFPUException (void) { unsigned short usCW; |