cdtext.c: was not converting arranger string properly.

This commit is contained in:
rocky
2004-11-08 04:13:27 +00:00
parent 9a75dca071
commit 7e765bafdc

View File

@@ -1,5 +1,5 @@
/* /*
$Id: cdtext.c,v 1.9 2004/09/03 23:20:11 rocky Exp $ $Id: cdtext.c,v 1.10 2004/11/08 04:13:27 rocky Exp $
Copyright (C) 2004 Rocky Bernstein <rocky@panix.com> Copyright (C) 2004 Rocky Bernstein <rocky@panix.com>
toc reading routine adapted from cuetools toc reading routine adapted from cuetools
@@ -60,7 +60,7 @@ const char *cdtext_keywords[] =
const char * const char *
cdtext_field2str (cdtext_field_t i) cdtext_field2str (cdtext_field_t i)
{ {
if (i == 0 || i >= MAX_CDTEXT_FIELDS) if (i >= MAX_CDTEXT_FIELDS)
return "Invalid CDTEXT field index"; return "Invalid CDTEXT field index";
else else
return cdtext_keywords[i]; return cdtext_keywords[i];