mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
Fix a couple of compile warnings on OS X 10.6
This commit is contained in:
parent
f16178c08f
commit
303c04109b
@ -33,8 +33,8 @@ static char *
|
||||
secs_to_uptime(long secs)
|
||||
{
|
||||
long int days = secs / 86400;
|
||||
int hours = (secs - (days * 86400)) / 3600;
|
||||
int minutes = (secs - (days * 86400) - (hours * 3600)) / 60;
|
||||
int hours = (int)((secs - (days * 86400)) / 3600);
|
||||
int minutes = (int)((secs - (days * 86400) - (hours * 3600)) / 60);
|
||||
char *uptime_string = NULL;
|
||||
|
||||
switch (days) {
|
||||
|
Loading…
Reference in New Issue
Block a user