1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-06 01:33:12 +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
+1 -1
View File
@@ -552,7 +552,7 @@ struct t_hashtable *
irc_bar_item_focus_buffer_nicklist (const void *pointer, void *data,
struct t_hashtable *info)
{
long unsigned int value;
unsigned long value;
int rc;
struct t_gui_buffer *buffer;
struct t_irc_nick *ptr_nick;
+1 -1
View File
@@ -55,7 +55,7 @@ irc_info_create_string_with_pointer (char **string, void *pointer)
*string = malloc (64);
if (*string)
{
snprintf (*string, 64, "0x%lx", (long unsigned int)pointer);
snprintf (*string, 64, "0x%lx", (unsigned long)pointer);
}
}
}