From: Daniel Stenberg <daniel@haxx.se>
Date: Sat, 29 Nov 2014 22:06:04 +0000 (+0100)
Subject: smb.h: fixed picky compiler warning
X-Git-Tag: curl-7_40_0~280
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5409f32984f17c25e84a52fe86f890c73133d531;p=curl

smb.h: fixed picky compiler warning

smb.h:30:16: error: comma at end of enumerator list [-Werror=pedantic]
---

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 {