Fix shadowing bug created from previous change.

This commit is contained in:
Kurt Zeilenga 1998-08-20 18:40:45 +00:00
parent 0a5ab66d69
commit 6ffddf154a

View File

@ -114,7 +114,7 @@ str2charray( char *str, char *brkstr )
int i;
/* protect the input string from strtok */
char *str = strdup( str );
str = strdup( str );
i = 1;
for ( s = str; *s; s++ ) {