From 27f1c2604e8cafda9ee056de4b19b677a3f3c987 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Sat, 25 Aug 2007 09:10:48 +0000 Subject: [PATCH] Reacted on false compiler warning about potentially unused variable --- libburn/trunk/test/telltoc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libburn/trunk/test/telltoc.c b/libburn/trunk/test/telltoc.c index 99e0e808..fb12c12f 100644 --- a/libburn/trunk/test/telltoc.c +++ b/libburn/trunk/test/telltoc.c @@ -580,7 +580,8 @@ ex:; int telltoc_read_and_print(struct burn_drive *drive, int start_sector, int sector_count, char *raw_file, int encoding) { - int ret, j, i, request = 16, done, lbas = 0, final_cd_try = -1, todo; + int j, i, request = 16, done, lbas = 0, final_cd_try = -1, todo; + int ret = 0; char buf[16 * 2048], line[81]; off_t data_count, total_count= 0, last_reported_count= 0; struct stat stbuf;