mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-10 06:32:03 +00:00
VITA: Fix -Wpointer-sign warning
source/net_udp.c: In function 'UDP_Init': source/net_udp.c:102:25: warning: pointer targets in passing argument 2 of 'Cvar_Set' differ in signedness [-Wpointer-sign] 102 | Cvar_Set ("hostname", nick); | ^~~~ | | | SceChar8 * {aka signed char *} In file included from source/quakedef.h:282, from source/net_udp.c:26: source/cvar.h:98:50: note: expected 'const char *' but argument is of type 'SceChar8 *' {aka 'signed char *'} 98 | void Cvar_Set (const char *var_name, const char *value); | ~~~~~~~~~~~~^~~~~
This commit is contained in:
parent
b709396d40
commit
b425d04291
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ sys_socket_t UDP_Init (void)
|
||||||
sceAppUtilInit(&init_param, &boot_param);
|
sceAppUtilInit(&init_param, &boot_param);
|
||||||
SceChar8 nick[SCE_SYSTEM_PARAM_USERNAME_MAXSIZE];
|
SceChar8 nick[SCE_SYSTEM_PARAM_USERNAME_MAXSIZE];
|
||||||
sceAppUtilSystemParamGetString(SCE_SYSTEM_PARAM_ID_USERNAME, nick, SCE_SYSTEM_PARAM_USERNAME_MAXSIZE);
|
sceAppUtilSystemParamGetString(SCE_SYSTEM_PARAM_ID_USERNAME, nick, SCE_SYSTEM_PARAM_USERNAME_MAXSIZE);
|
||||||
Cvar_Set ("hostname", nick);
|
Cvar_Set ("hostname", (const char*)nick);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
if (gethostname(buff, MAXHOSTNAMELEN) != 0)
|
if (gethostname(buff, MAXHOSTNAMELEN) != 0)
|
||||||
|
|
Loading…
Reference in a new issue