1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-02 15:53:12 +02:00

core: replace "%lx" by "%p" in dump of relay data

This commit is contained in:
Sébastien Helleu
2024-06-14 18:10:18 +02:00
parent d0830b9255
commit f8d98bbd5e
2 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -1641,7 +1641,7 @@ relay_http_print_log_response (struct t_relay_http_response *response)
weechat_log_printf (" http_version. . . . . . : '%s'", response->http_version);
weechat_log_printf (" return_code . . . . . . : %d", response->return_code);
weechat_log_printf (" message . . . . . . . . : '%s'", response->message);
weechat_log_printf (" headers . . . . . . . . : 0x%lx (hashtable: '%s')",
weechat_log_printf (" headers . . . . . . . . : %p (hashtable: '%s')",
response->headers,
weechat_hashtable_get_string (response->headers, "keys_values"));
weechat_log_printf (" content_length. . . . . : %d", response->content_length);