diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2018-10-01 22:21:25 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2018-10-01 22:21:25 +0200 |
commit | 8abd05fe3d1b5acb611d66b98bce5dc3f8002d9f (patch) | |
tree | 61d2d2e2af4d68a20577043e8500f2de6f64c26a /src/gui/gui-nicklist.c | |
parent | b7f3ba69e12c7bb38523e30aaf4a8e46a4de853f (diff) | |
download | weechat-8abd05fe3d1b5acb611d66b98bce5dc3f8002d9f.zip |
core: replace "long unsigned int" by "unsigned long"
Diffstat (limited to 'src/gui/gui-nicklist.c')
-rw-r--r-- | src/gui/gui-nicklist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/gui-nicklist.c b/src/gui/gui-nicklist.c index f8c35a3a9..662cda038 100644 --- a/src/gui/gui-nicklist.c +++ b/src/gui/gui-nicklist.c @@ -70,7 +70,7 @@ gui_nicklist_send_signal (const char *signal, struct t_gui_buffer *buffer, { snprintf (str_args, length, "0x%lx,%s", - (long unsigned int)(buffer), + (unsigned long)(buffer), (arguments) ? arguments : ""); (void) hook_signal_send (signal, WEECHAT_HOOK_SIGNAL_STRING, str_args); |