diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2005-12-06 18:20:59 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2005-12-06 18:20:59 +0000 |
commit | 0ef010d21121365ca901881de40d5daf6bf4f07a (patch) | |
tree | 55dcbfebd572e165ed3cf16838015c2ce0519101 /src/common/log.c | |
parent | 6c7a71976b61c6a703d09d1de9db1f4b2496e738 (diff) | |
download | weechat-0ef010d21121365ca901881de40d5daf6bf4f07a.zip |
added /upgrade command, added ETA for DCC files
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; } |