Minor changes

* Fixed identation
* Make some parts of the code more readable.
This commit is contained in:
Alexandro Sánchez Bach 2014-03-14 18:12:12 +01:00
parent 48abfdfbb1
commit 6c4a980d36
5 changed files with 15 additions and 38 deletions

View file

@ -287,7 +287,7 @@ int sys_net_shutdown(s32 s, s32 how)
int sys_net_socket(s32 family, s32 type, s32 protocol)
{
sys_net.Warning("socket(family=%d, type=%d, protocol=%d", family, type, protocol);
sys_net.Warning("socket(family=%d, type=%d, protocol=%d)", family, type, protocol);
int ret = socket(family, type, protocol);
g_lastError = getLastError();
return ret;