Fix "file.h:56:21: warning: comma at end of enumerator list".

svn path=/trunk/; revision=46889
This commit is contained in:
Gerald Combs 2013-01-02 01:35:08 +00:00
parent a689b032f6
commit df007c001d
1 changed files with 1 additions and 1 deletions

2
file.h
View File

@ -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. */