summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHoger Dehnhardt <holger@dehnhardt.org>2016-12-19 21:25:30 +0100
committerHoger Dehnhardt <holger@dehnhardt.org>2016-12-19 21:25:30 +0100
commit3962e4b5dd654b468c4c10501dc30529837e0f92 (patch)
tree97fcbe6541779c3e911c2c22f88ccfa6709af7d4
parentfeef5ca5c10ffa9250cc3c51393efb859055cd37 (diff)
downloadjack2-3962e4b5dd654b468c4c10501dc30529837e0f92.tar.gz
when in wrong state, write message to stderr
-rw-r--r--example-clients/transport.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/example-clients/transport.c b/example-clients/transport.c
index ff91e765..90e74168 100644
--- a/example-clients/transport.c
+++ b/example-clients/transport.c
@@ -227,10 +227,10 @@ static void com_toggle(char *arg)
com_stop( arg );
break;
case JackTransportStarting:
- printf ("state: Starting - no transport toggling");
+ fprintf(stderr, "state: Starting - no transport toggling");
break;
default:
- printf ("state: Starting - no transport toggling");
+ fprintf(stderr, "state: Starting - no transport toggling");
}
}