Skip to content
Snippets Groups Projects
Commit 1152d74a authored by rswindell's avatar rswindell
Browse files

Attempt to get rid fo gcc warnings about "enumeration value not handled in

switch" by  creating a default case.
parent a8f98a0f
No related branches found
No related tags found
No related merge requests found
......@@ -384,6 +384,6 @@ char* SMBCALL smb_nettype(enum smb_net_type type)
case NET_QWK: return "QWKnet";
case NET_FIDO: return "Fidonet";
case NET_INTERNET: return "Internet";
default: return "Unsupported net type";
}
return "Unsupported net type";
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment