From 5d14e327aa8fa0ff31221abe21a3c2de2eea6751 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Mon, 29 Jul 2002 21:39:42 +0000 Subject: [PATCH] don't print the filename and only print the CUEPOINT if there is one --- tools/wav/wav.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/wav/wav.c b/tools/wav/wav.c index 50660e176..cf1e8c99e 100644 --- a/tools/wav/wav.c +++ b/tools/wav/wav.c @@ -386,7 +386,8 @@ main (int argc, char **argv) break; } } - printf ("%s: CUEPOINT=%d %d\n", *argv, sample_start, sample_count); + if (sample_start!= -1) + printf ("CUEPOINT=%d %d\n", sample_start, sample_count); } return 0; }