diff options
author | Keith Packard <keithp@keithp.com> | 2004-07-08 16:30:59 +0000 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2004-07-08 16:30:59 +0000 |
commit | 4b34993c830019b0f89a5b07004a7c8fb8cf90d5 (patch) | |
tree | e934390ad73f3cbe2b44601ee9a4de73753b953a /xcompmgr.c | |
parent | cd952da085147938c06a46440fd178382a74e0df (diff) |
Eliminate 'struct timezone tz' as it isn't used.
reviewed by: Keith Packard
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; } |