Variable type fix.

(Logical change 1.507)
edge.strict_endians
!uv 2004-08-20 12:18:22 +00:00
parent cb04792793
commit d9f119eef3
1 changed files with 2 additions and 1 deletions

View File

@ -337,7 +337,8 @@ static int transform (const char *pattern, char **regex)
*/
static int parse_time (const char *value, time_t *since)
{
time_t result, now;
long long result;
time_t now;
char *suffix = NULL;
if (!value || !since)