mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-28 16:01:10 +02:00
weather: fix month in console log
Origin commit data
------------------
Branch: ni/coolstream
Commit: 8b5f9847d8
Author: vanhofen <vanhofen@gmx.de>
Date: 2019-03-22 (Fri, 22 Mar 2019)
Origin message was:
------------------
- weather: fix month in console log
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -149,7 +149,7 @@ bool CWeather::GetWeatherDetails()
|
||||
struct tm *timeinfo;
|
||||
timeinfo = localtime(&daily_data.timestamp);
|
||||
|
||||
printf("[CWeather]: temp %d.%d.%d: min %.1f - max %.1f -> %s\n", timeinfo->tm_mday, timeinfo->tm_mon, timeinfo->tm_year + 1900, daily_data.temperatureMin, daily_data.temperatureMax, daily_data.icon.c_str());
|
||||
printf("[CWeather]: temp %d.%d.%d: min %.1f - max %.1f -> %s\n", timeinfo->tm_mday, timeinfo->tm_mon + 1, timeinfo->tm_year + 1900, daily_data.temperatureMin, daily_data.temperatureMax, daily_data.icon.c_str());
|
||||
v_forecast.push_back(daily_data);
|
||||
}
|
||||
return true;
|
||||
|
Reference in New Issue
Block a user