Fix build warning
Hello!
On latest master clang
throws this warning
weather-config.c:267:19: warning: declaration shadows a variable in the global scope [-Wshadow]
xml_timezone *timezone;
^
/usr/include/time.h:175:17: note: previous declaration is here
extern long int timezone;
This MR fixes the warning.