diff options
Diffstat (limited to 'xcompmgr.c')
-rw-r--r-- | xcompmgr.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -164,9 +164,8 @@ int get_time_in_milliseconds () { struct timeval tv; - struct timezone tz; - gettimeofday (&tv, &tz); + gettimeofday (&tv, NULL); return tv.tv_sec * 1000 + tv.tv_usec / 1000; } |