mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2025-12-08 02:48:30 +00:00
Fixed signed/unsigned mismatch warnings because warnings are my worst enemy
--HG-- extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%40186
This commit is contained in:
parent
8efac63e69
commit
272a452115
@ -291,7 +291,7 @@ void CSmmAPI::GetShVersions(int &shvers, int &shimpl)
|
|||||||
|
|
||||||
int CSmmAPI::FormatIface(char iface[], unsigned int maxlength)
|
int CSmmAPI::FormatIface(char iface[], unsigned int maxlength)
|
||||||
{
|
{
|
||||||
int length = (int)strlen(iface);
|
unsigned int length = (unsigned int)strlen(iface);
|
||||||
int i;
|
int i;
|
||||||
int num = 0;
|
int num = 0;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user