From c48244abfc5497b896dfcb41f919eab0e5cf014a Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Thu, 21 Feb 2008 20:11:20 +0000 Subject: [PATCH] Directed error message to proper output channel --- test/libburner.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/libburner.c b/test/libburner.c index cc7769b..fe0be80 100644 --- a/test/libburner.c +++ b/test/libburner.c @@ -443,7 +443,8 @@ int libburner_payload(struct burn_drive *drive, /* Use the fifo object as data source for the track */ if (burn_track_set_source(track, fifo_src[trackno]) != BURN_SOURCE_OK) { - printf("FATAL: Cannot attach source object to track object\n"); + fprintf(stderr, + "FATAL: Cannot attach source object to track object\n"); return 0; }