cast the time pointer so gcc stops warning over nothing

This commit is contained in:
Mike Frysinger 2005-04-23 01:42:03 +00:00
parent 5cfa5ef6f3
commit 5b2e27137d

View File

@ -74,7 +74,7 @@ extern int who_main(int argc, char **argv)
} else
printf("%-8s ", "?");
printf("%-12.12s %s\n", ctime(&(ut->ut_tv.tv_sec)) + 4, ut->ut_host);
printf("%-12.12s %s\n", ctime((time_t*)&(ut->ut_tv.tv_sec)) + 4, ut->ut_host);
}
}
endutent();