From: Yong Bakos Date: Tue, 8 Nov 2016 16:02:12 +0000 (-0800) Subject: util: Remove stray space from function signature X-Git-Tag: 1.12.91~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2281bc08b2be2eb07c169fc283dc1e16f99bf346;p=platform%2Fupstream%2Fwayland.git 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 Reviewed-by: Daniel Stone --- 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;