]> granicus.if.org Git - curl/commitdiff
smb.h: fixed picky compiler warning
authorDaniel Stenberg <daniel@haxx.se>
Sat, 29 Nov 2014 22:06:04 +0000 (23:06 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 29 Nov 2014 22:06:04 +0000 (23:06 +0100)
smb.h:30:16: error: comma at end of enumerator list [-Werror=pedantic]

lib/smb.h

index 186e2db2e8c6d0ae9f6e6338df1668b8b45c263a..63fdba814956a503253a45a5b2cd039deb1c7132 100644 (file)
--- 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 {