* registryd/deviceeventcontroller.c
Fixed compilation error caused by calling gettimeofday()
with 1 parameter
git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@357
e2bd861d-eb25-0410-b326-
f6ed22b6b98c
+2002-10-23 Vitaly Tishkov <tvv@sparc.spb.su>
+
+ * registryd/deviceeventcontroller.c
+ Fixed compilation error caused by calling gettimeofday()
+ with 1 parameter
+
2002-10-18 Bill Haneman <bill.haneman@sun.com>
BUGFIX for #95828.
bounce_delay = dec_xkb_get_bouncekeys_delay (controller);
if (bounce_delay)
{
- gettimeofday (&tv);
+ gettimeofday (&tv, NULL);
elapsed_msec =
(tv.tv_sec - priv->last_release_time.tv_sec) * 1000
+ (tv.tv_usec - priv->last_release_time.tv_usec) / 1000;
slow_delay = dec_xkb_get_slowkeys_delay (controller);
if (slow_delay)
{
- gettimeofday (&tv);
+ gettimeofday (&tv, NULL);
elapsed_msec =
(tv.tv_sec - priv->last_press_time.tv_sec) * 1000
+ (tv.tv_usec - priv->last_press_time.tv_usec) / 1000;