1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-26 04:46:37 +02:00

Moved content of src/common/log.c to src/gui/gui-log.c, log.c is now used for WeeChat log file

This commit is contained in:
Sebastien Helleu
2006-05-20 09:45:02 +00:00
parent 1bc71392c4
commit 0eea93bba3
50 changed files with 686 additions and 544 deletions
+1 -1
View File
@@ -258,7 +258,7 @@ weechat_plugin_log (t_weechat_plugin *plugin,
va_start (argptr, message);
vsnprintf (buf, sizeof (buf) - 1, message, argptr);
va_end (argptr);
log_write_line (ptr_buffer, buf);
gui_log_write_line (ptr_buffer, buf);
}
}