1
0
mirror of https://github.com/moparisthebest/curl synced 2025-02-28 17:31:46 -05:00

smb.h: fixed picky compiler warning

smb.h:30:16: error: comma at end of enumerator list [-Werror=pedantic]
This commit is contained in:
Daniel Stenberg 2014-11-29 23:06:04 +01:00
parent 733686e430
commit 5409f32984

View File

@ -27,7 +27,7 @@ enum smb_conn_state {
SMB_CONNECTING,
SMB_NEGOTIATE,
SMB_SETUP,
SMB_CONNECTED,
SMB_CONNECTED
};
struct smb_conn {