Directed error message to proper output channel

This commit is contained in:
Thomas Schmitt 2008-02-21 20:11:20 +00:00
parent 13492efe4b
commit c48244abfc
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}