diff options
author | Yong Bakos <ybakos@humanoriented.com> | 2016-11-08 08:02:12 -0800 |
---|---|---|
committer | Daniel Stone <daniels@collabora.com> | 2016-11-16 15:57:51 +0000 |
commit | 2281bc08b2be2eb07c169fc283dc1e16f99bf346 (patch) | |
tree | 58205a6f43348571ffa5ea99eaf8b6f5fb36f6bc | |
parent | 2c6350beb92816eb9213c4944d197485e788ef6d (diff) |
util: Remove stray space from function signature
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>
-rw-r--r-- | src/wayland-util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wayland-util.h b/src/wayland-util.h index 4dba1ed..53f480b 100644 --- a/src/wayland-util.h +++ b/src/wayland-util.h @@ -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; |