Removed extra newline.

This commit is contained in:
yellows8 2018-02-22 17:57:55 -05:00
parent 340148ca40
commit d2c9651836

View File

@ -28,7 +28,6 @@ int main(int argc, char **argv)
//Print current time
time_t unixTime = time(NULL);
struct tm* timeStruct = gmtime((const time_t *)&unixTime);//Gets UTC time. Currently localtime() will also return UTC (timezones not supported).
int hours = timeStruct->tm_hour;