aboutsummaryrefslogtreecommitdiffstats
path: root/xcompmgr.c
diff options
context:
space:
mode:
Diffstat (limited to 'xcompmgr.c')
-rw-r--r--xcompmgr.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/xcompmgr.c b/xcompmgr.c
index 8bb23d1..4064852 100644
--- a/xcompmgr.c
+++ b/xcompmgr.c
@@ -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;
}