Skip to content

Commit

Permalink
Fix "_Param_(2) in call to 'printf' must be the address of a string. …
Browse files Browse the repository at this point in the history
…Actual type: 'char [16][256]'"

#138
  • Loading branch information
SamVanheer committed Mar 16, 2022
1 parent 056ba99 commit 01b7270
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/studiomdl/studiomdl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3369,7 +3369,7 @@ int main (int argc, char **argv)
strcpy ( sourcetexture[numrep], argv[i]);
printf ("Replaceing %s with %s\n", sourcetexture[numrep], defaulttexture[numrep] );
}
printf ("Using default texture: %s\n", defaulttexture);
printf ("Using default texture: %s\n", defaulttexture[numrep]);
numrep++;
break;
case 'r':
Expand Down

0 comments on commit 01b7270

Please sign in to comment.