projects
/
dana
/
xcompmgr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cd952da
)
Eliminate 'struct timezone tz' as it isn't used.
author
Keith Packard
<keithp@keithp.com>
Thu, 8 Jul 2004 16:30:59 +0000
(16:30 +0000)
committer
Keith Packard
<keithp@keithp.com>
Thu, 8 Jul 2004 16:30:59 +0000
(16:30 +0000)
reviewed by: Keith Packard
ChangeLog
patch
|
blob
|
history
xcompmgr.c
patch
|
blob
|
history
diff --git
a/ChangeLog
b/ChangeLog
index 60db1909d22b5b52605f2a4e263f63b60432faa9..c17f94a9d3ce3bb0492433691241a99e70585da5 100644
(file)
--- a/
ChangeLog
+++ b/
ChangeLog
@@
-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),
diff --git
a/xcompmgr.c
b/xcompmgr.c
index 8bb23d1b06c91976ce85f06816d42be432b1d974..40648520a2fa179f66a6efaeb75320ac5de8bd40 100644
(file)
--- 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;
}