Better fix for unused var problem.
[monky] / src / weather.c
index 3cc8f4e..1e43283 100644 (file)
@@ -785,6 +785,8 @@ int process_weather_uri(char *uri, char *locID, int dayf)
 {
        /* locID MUST BE upper-case */
        char *tmp_p = locID;
+       UNUSED(dayf); /* make gcc shut up */
+
        while (*tmp_p) {
                *tmp_p = toupper(*tmp_p);
                tmp_p++;
@@ -811,6 +813,5 @@ int process_weather_uri(char *uri, char *locID, int dayf)
        } else  if (!strstr(uri, "localhost") && !strstr(uri, "127.0.0.1")) {
                return -1;
        }
-       if (dayf) {} /* make gcc shut up */
        return 0;
 }