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>
This commit is contained in:
Yong Bakos 2016-11-08 08:02:12 -08:00 committed by Daniel Stone
parent 2c6350beb9
commit 2281bc08b2

View file

@ -514,7 +514,7 @@ wl_array_copy(struct wl_array *array, struct wl_array *source);
typedef int32_t wl_fixed_t; typedef int32_t wl_fixed_t;
static inline double static inline double
wl_fixed_to_double (wl_fixed_t f) wl_fixed_to_double(wl_fixed_t f)
{ {
union { union {
double d; double d;