aboutsummaryrefslogtreecommitdiffstats
path: root/simple_dialog.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-10-03 07:30:49 +0000
committerGuy Harris <guy@alum.mit.edu>2005-10-03 07:30:49 +0000
commit638d690785fb9619b6e1dcd7e6529063c16c8c4a (patch)
treec5586bf3b6290849d70fdd83879ae2627ad0c76e /simple_dialog.h
parent96c01ad3c6098a1b99633f8773ad45f08bed696c (diff)
C89 doesn't allow a comma after the end of the last value in an
enumerator list, and some compilers don't allow it as an extension. svn path=/trunk/; revision=16075
Diffstat (limited to 'simple_dialog.h')
-rw-r--r--simple_dialog.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/simple_dialog.h b/simple_dialog.h
index 098dca3462..1e788173e8 100644
--- a/simple_dialog.h
+++ b/simple_dialog.h
@@ -44,7 +44,7 @@ typedef enum {
ESD_TYPE_CONFIRMATION, /**< asks the user for confirmation; there should be more than
one button */
ESD_TYPE_ERROR, /**< tells the user about a serious problem; the only button should be "OK" */
- ESD_TYPE_STOP, /**< tells the user a stop action is in progress, there should be no button */
+ ESD_TYPE_STOP /**< tells the user a stop action is in progress, there should be no button */
} ESD_TYPE_E;
/** display no buttons at all */