diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-11-29 23:06:04 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-11-29 23:06:04 +0100 |
commit | 5409f32984f17c25e84a52fe86f890c73133d531 (patch) | |
tree | 331bc93f9d4addef5868c655f36283a2b95e970b /lib/smb.h | |
parent | 733686e430b29deadd24325926aa61e4b7b83a99 (diff) | |
download | curl-5409f32984f17c25e84a52fe86f890c73133d531.tar.gz |
smb.h: fixed picky compiler warning
smb.h:30:16: error: comma at end of enumerator list [-Werror=pedantic]
Diffstat (limited to 'lib/smb.h')
-rw-r--r-- | lib/smb.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ enum smb_conn_state { SMB_CONNECTING, SMB_NEGOTIATE, SMB_SETUP, - SMB_CONNECTED, + SMB_CONNECTED }; struct smb_conn { |