mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-20 22:05:12 +00:00
Minor changes
* Fixed identation * Make some parts of the code more readable.
This commit is contained in:
parent
48abfdfbb1
commit
6c4a980d36
5 changed files with 15 additions and 38 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue