From 30c3852bda7f60b0ffb1bb2f6ed8ba8800001b32 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sun, 9 Feb 2014 16:56:40 -0800 Subject: [PATCH] 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 Reviewed-by: Peter Hutterer Signed-off-by: Keith Packard --- include/eventstr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */