diff options
Diffstat (limited to 'src/plugins/fifo')
-rw-r--r-- | src/plugins/fifo/fifo.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/plugins/fifo/fifo.c b/src/plugins/fifo/fifo.c index 5e531d6ee..399f99fe5 100644 --- a/src/plugins/fifo/fifo.c +++ b/src/plugins/fifo/fifo.c @@ -175,11 +175,13 @@ fifo_create () fifo_filename); } else + { weechat_printf (NULL, _("%s%s: unable to create pipe for remote " - "control (%s)"), + "control (%s): error %d %s"), weechat_prefix ("error"), FIFO_PLUGIN_NAME, - fifo_filename); + fifo_filename, errno, strerror (errno)); + } } } } |