diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-12-08 21:52:07 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-12-09 14:55:37 -0800 |
commit | 372a6f10dc2d74d2d179e8b92449e9b8636a99ef (patch) | |
tree | ba1a3381fd43c1773546e9c2addd91ac6c9df52e /Xi/xichangehierarchy.c | |
parent | 522f8bcc0360d6a117e929a004bc956ab92037e9 (diff) |
Change disable_clientpointer return type to void
It doesn't return anything, nor does it's caller expect it to.
Fixes Solaris Studio compiler error:
"xichangehierarchy.c", line 214: Function has no return statement : disable_clientpointer
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'Xi/xichangehierarchy.c')
-rw-r--r-- | Xi/xichangehierarchy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Xi/xichangehierarchy.c b/Xi/xichangehierarchy.c index a8bc761d3..503404e64 100644 --- a/Xi/xichangehierarchy.c +++ b/Xi/xichangehierarchy.c @@ -200,7 +200,7 @@ unwind: return rc; } -static int +static void disable_clientpointer(DeviceIntPtr dev) { int i; |