Skip to content
Snippets Groups Projects
Commit 6ffddf15 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Fix shadowing bug created from previous change.

parent 0a5ab66d
No related branches found
No related tags found
No related merge requests found
......@@ -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++ ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment