aboutsummaryrefslogtreecommitdiff
path: root/cue-bin-split.c
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2016-04-26 16:15:12 +1200
committerDavid Phillips <dbphillipsnz@gmail.com>2016-04-26 16:15:12 +1200
commitce39e8e6fa1d8220e4050219ad72dfdc77ee1cfc (patch)
tree1a5ebbe51a05000b9a80f7d63278ee1efb916a9f /cue-bin-split.c
parent01a3d56ab3c71a065c3b827740dade5f27e95ef3 (diff)
downloadcue-bin-split-ce39e8e6fa1d8220e4050219ad72dfdc77ee1cfc.tar.xz
Fix snprintf overflow detection, add newline to error message
Diffstat (limited to 'cue-bin-split.c')
-rw-r--r--cue-bin-split.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cue-bin-split.c b/cue-bin-split.c
index 4ebd843..2e2a190 100644
--- a/cue-bin-split.c
+++ b/cue-bin-split.c
@@ -141,7 +141,7 @@ int main(int argc, char **argv)
if (start_sample > finish_sample)
{
- fprintf(stderr, "ERROR: Finish time can't be before start time, skipping %s", out_fname);
+ fprintf(stderr, "ERROR: Finish time can't be before start time, skipping %s\n", out_fname);
continue;
}