From ab66e82584cec52b532f754b590314b33c6e5ed4 Mon Sep 17 00:00:00 2001 From: Morgan Aldridge Date: Sat, 7 Mar 2020 12:02:09 -0500 Subject: [PATCH] Fixed warning re:unused parameter in readrc() --- mlclock.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlclock.c b/mlclock.c index 9add661..756d915 100644 --- a/mlclock.c +++ b/mlclock.c @@ -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");