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
1 changed files with 1 additions and 1 deletions

View File

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