Function no longer returns anything.

Variable is defunct.
This commit is contained in:
Svend Sorensen
2004-09-01 10:13:46 +00:00
parent f68d7aad40
commit 56547e4950

View File

@@ -214,7 +214,7 @@ void print_conv (char *start, int length, Cd *cd, int trackno)
* NOTE: this does not handle octal and hexidecimal escapes * NOTE: this does not handle octal and hexidecimal escapes
* except for \0 * except for \0
*/ */
int print_esc (char *c) void print_esc (char *c)
{ {
switch (*c) { switch (*c) {
case 'a': case 'a':
@@ -315,7 +315,6 @@ void cd_printf (char *format, Cd *cd, int trackno)
void print_info (Cd *cd) void print_info (Cd *cd)
{ {
int i; /* track */ int i; /* track */
char *c;
cd_printf(d_template, cd, 0); cd_printf(d_template, cd, 0);