diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2014-02-09 16:56:40 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-02-09 17:21:20 -0800 |
commit | 30c3852bda7f60b0ffb1bb2f6ed8ba8800001b32 (patch) | |
tree | a9ccd06832271bfbd69eeb99a7415fb7450a21ae /include | |
parent | 5300212ce8e9364ba26497605f3edc089af20130 (diff) |
Delete stray ; in struct _DeviceChangedEvent
Caused Solaris Studio cc to complain in every file which included it:
"../include/eventstr.h", line 179: warning: syntax error:
empty member declaration
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 'include')
-rw-r--r-- | include/eventstr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/eventstr.h b/include/eventstr.h index 3950584d5..cce903d04 100644 --- a/include/eventstr.h +++ b/include/eventstr.h @@ -176,7 +176,7 @@ struct _DeviceChangedEvent { struct { uint32_t min; /**< Minimum value */ uint32_t max; /**< Maximum value */ - double value; /**< Current value */; + double value; /**< Current value */ /* FIXME: frac parts of min/max */ uint32_t resolution; /**< Resolution counts/m */ uint8_t mode; /**< Relative or Absolute */ |