From 4f0fe014fb05a322f5cd56e718f2929df365b642 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominic=20Sacr=C3=A9?= Date: Fri, 16 Jan 2015 14:18:54 +0100 Subject: [PATCH] fix segfault caused by incorrect jack_error() format string --- jackd/engine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jackd/engine.c b/jackd/engine.c index 2d634e5..0fff48c 100644 --- a/jackd/engine.c +++ b/jackd/engine.c @@ -812,7 +812,7 @@ jack_process_external(jack_engine_t *engine, JSList *node) != sizeof (c)) { if (errno == EAGAIN) { jack_error ("pp: cannot clean up byte from graph wait " - "fd (%s) - no data present"); + "fd - no data present"); } else { jack_error ("pp: cannot clean up byte from graph wait " "fd (%s)", strerror (errno));