1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-27 05:16:38 +02:00

core: replace "long unsigned int" by "unsigned long"

This commit is contained in:
Sébastien Helleu
2018-10-01 22:21:25 +02:00
parent b7f3ba69e1
commit 8abd05fe3d
26 changed files with 54 additions and 54 deletions
+2 -2
View File
@@ -346,7 +346,7 @@ plugin_script_ptr2str (void *pointer)
return str_pointer[index_pointer];
snprintf (str_pointer[index_pointer], sizeof (str_pointer[index_pointer]),
"0x%lx", (long unsigned int)pointer);
"0x%lx", (unsigned long)pointer);
return str_pointer[index_pointer];
}
@@ -362,7 +362,7 @@ plugin_script_str2ptr (struct t_weechat_plugin *weechat_plugin,
const char *script_name, const char *function_name,
const char *str_pointer)
{
long unsigned int value;
unsigned long value;
int rc;
struct t_gui_buffer *ptr_buffer;