summaryrefslogtreecommitdiff
path: root/lib/smb.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2014-11-29 23:06:04 +0100
committerDaniel Stenberg <daniel@haxx.se>2014-11-29 23:06:04 +0100
commit5409f32984f17c25e84a52fe86f890c73133d531 (patch)
tree331bc93f9d4addef5868c655f36283a2b95e970b /lib/smb.h
parent733686e430b29deadd24325926aa61e4b7b83a99 (diff)
downloadcurl-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/smb.h b/lib/smb.h
index 186e2db2e..63fdba814 100644
--- a/lib/smb.h
+++ b/lib/smb.h
@@ -27,7 +27,7 @@ enum smb_conn_state {
SMB_CONNECTING,
SMB_NEGOTIATE,
SMB_SETUP,
- SMB_CONNECTED,
+ SMB_CONNECTED
};
struct smb_conn {