aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYong Bakos <ybakos@humanoriented.com>2016-11-08 08:02:12 -0800
committerDaniel Stone <daniels@collabora.com>2016-11-16 15:57:51 +0000
commit2281bc08b2be2eb07c169fc283dc1e16f99bf346 (patch)
tree58205a6f43348571ffa5ea99eaf8b6f5fb36f6bc /src
parentscanner: Fixed doxygen group name for _add_listener (diff)
downloadwayland-2281bc08b2be2eb07c169fc283dc1e16f99bf346.tar
wayland-2281bc08b2be2eb07c169fc283dc1e16f99bf346.tar.gz
wayland-2281bc08b2be2eb07c169fc283dc1e16f99bf346.tar.bz2
wayland-2281bc08b2be2eb07c169fc283dc1e16f99bf346.tar.lz
wayland-2281bc08b2be2eb07c169fc283dc1e16f99bf346.tar.xz
wayland-2281bc08b2be2eb07c169fc283dc1e16f99bf346.tar.zst
wayland-2281bc08b2be2eb07c169fc283dc1e16f99bf346.zip
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>
Diffstat (limited to 'src')
-rw-r--r--src/wayland-util.h2
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;