summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2014-02-09 16:56:40 -0800
committerKeith Packard <keithp@keithp.com>2014-02-09 17:21:20 -0800
commit30c3852bda7f60b0ffb1bb2f6ed8ba8800001b32 (patch)
treea9ccd06832271bfbd69eeb99a7415fb7450a21ae
parent5300212ce8e9364ba26497605f3edc089af20130 (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>
-rw-r--r--include/eventstr.h2
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 */