From b1c8557cc53bba7650fd5e8380d2895d3c199afe Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Fri, 23 Jul 2010 22:19:30 -0400 Subject: [PATCH] [terminal] fix debug statement It was missing an argument. --- src/libply-splash-core/ply-terminal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libply-splash-core/ply-terminal.c b/src/libply-splash-core/ply-terminal.c index fb6a29d3..40243799 100644 --- a/src/libply-splash-core/ply-terminal.c +++ b/src/libply-splash-core/ply-terminal.c @@ -466,7 +466,7 @@ ply_terminal_open_device (ply_terminal_t *terminal) if (terminal->fd < 0) { - ply_trace ("Unable to open terminal device '%s': %m"); + ply_trace ("Unable to open terminal device '%s': %m", terminal->name); return false; }