diff options
Diffstat (limited to 'src/common/log.c')
-rw-r--r-- | src/common/log.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/log.c b/src/common/log.c index cc76a2d5e..cfd3cca44 100644 --- a/src/common/log.c +++ b/src/common/log.c @@ -120,7 +120,7 @@ log_start (t_gui_buffer *buffer) buffer->log_filename = (char *) malloc (length); if (!buffer->log_filename) { - wee_log_printf (_("Not enough memory to write log file for a buffer\n")); + weechat_log_printf (_("Not enough memory to write log file for a buffer\n")); return; } if (cfg_log_path[0] == '~') @@ -148,7 +148,7 @@ log_start (t_gui_buffer *buffer) buffer->log_file = fopen (buffer->log_filename, "a"); if (!buffer->log_file) { - wee_log_printf (_("Unable to write log file for a buffer\n")); + weechat_log_printf (_("Unable to write log file for a buffer\n")); free (buffer->log_filename); return; } |