Fixed warning re:unused parameter in readrc()

This commit is contained in:
Morgan Aldridge 2020-03-07 12:02:09 -05:00
parent ebc53bb8cb
commit ab66e82584
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ void readrc() {
if ( (file = fopen(RCFile, "r")) == NULL ) {
fprintf(stderr, "Can't open \"%s\" file.\n", RCFile);
fprintf(stderr, "Now making rc file.\n", RCFile);
fprintf(stderr, "Now making rc file '%s'.\n", RCFile);
if ( (file = fopen(RCFile, "a")) == NULL )
fprintf(stderr, "You can't make rc file in your own dirctory.\n");