Skip to content

Commit 7590617

Browse files
author
root
committed
c90
1 parent 4925203 commit 7590617

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

ev.c

+5-3
Original file line numberDiff line numberDiff line change
@@ -2006,9 +2006,11 @@ ev_time (void) EV_NOEXCEPT
20062006
}
20072007
#endif
20082008

2009-
struct timeval tv;
2010-
gettimeofday (&tv, 0);
2011-
return EV_TV_GET (tv);
2009+
{
2010+
struct timeval tv;
2011+
gettimeofday (&tv, 0);
2012+
return EV_TV_GET (tv);
2013+
}
20122014
}
20132015
#endif
20142016

0 commit comments

Comments
 (0)