util: Remove stray space from function signature
authorYong Bakos <ybakos@humanoriented.com>
Tue, 8 Nov 2016 16:02:12 +0000 (08:02 -0800)
committerDaniel Stone <daniels@collabora.com>
Wed, 16 Nov 2016 15:57:51 +0000 (15:57 +0000)
wl_fixed_to_double had a stray space before the parameter list.
Remove this space.

Signed-off-by: Yong Bakos <ybakos@humanoriented.com>
Reviewed-by: Daniel Stone <daniels@collabora.com>
src/wayland-util.h

index 4dba1ed..53f480b 100644 (file)
@@ -514,7 +514,7 @@ wl_array_copy(struct wl_array *array, struct wl_array *source);
 typedef int32_t wl_fixed_t;
 
 static inline double
-wl_fixed_to_double (wl_fixed_t f)
+wl_fixed_to_double(wl_fixed_t f)
 {
        union {
                double d;