diff options
Diffstat (limited to '')
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rw-r--r-- | xcompmgr.c | 3 | 
2 files changed, 8 insertions, 2 deletions
| @@ -1,3 +1,10 @@ +2004-07-08  Ely Levy  <elylevy-xserver@cs.huji.ac.il> + +	reviewed by: Keith Packard + +	* xcompmgr.c: (get_time_in_milliseconds): +	Eliminate 'struct timezone tz' as it isn't used. +  2004-07-08  Keith Packard  <keithp@keithp.com>  	* xcompmgr.c: (get_time_in_milliseconds), (find_fade), @@ -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;  } | 
