summaryrefslogtreecommitdiff
path: root/file.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-01-02 01:35:08 +0000
committerGerald Combs <gerald@wireshark.org>2013-01-02 01:35:08 +0000
commitdf007c001d6f78e44ef5a82ed93d1031ef68d1e3 (patch)
tree89dbab232162e087c8a06450a516af72d42b56ed /file.h
parenta689b032f68453a2127c036fcbd3573f0298e289 (diff)
downloadwireshark-df007c001d6f78e44ef5a82ed93d1031ef68d1e3.tar.gz
Fix "file.h:56:21: warning: comma at end of enumerator list".
svn path=/trunk/; revision=46889
Diffstat (limited to 'file.h')
-rw-r--r--file.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.h b/file.h
index ea182446d8..34685caa54 100644
--- a/file.h
+++ b/file.h
@@ -53,7 +53,7 @@ typedef enum {
typedef enum {
CF_WRITE_OK, /**< operation succeeded */
CF_WRITE_ERROR, /**< operation got an error (function may provide err with details) */
- CF_WRITE_ABORTED, /**< operation aborted by user */
+ CF_WRITE_ABORTED /**< operation aborted by user */
} cf_write_status_t;
/** Return values from functions that print sets of packets. */