GNUNET_DISK_OPEN_READ
[oweals/gnunet.git] / src / util / time.c
index 3ae4725615cd03a8c761a6cc38dbb35950ce66c6..c8f40884190b6a885d95e03a71709fcf14eaeecb 100644 (file)
@@ -39,7 +39,7 @@ GNUNET_TIME_absolute_get ()
   struct GNUNET_TIME_Absolute ret;
   struct timeval tv;
 
-  gettimeofday (&tv, NULL);
+  GETTIMEOFDAY (&tv, NULL);
   ret.value = tv.tv_sec * 1000 + tv.tv_usec / 1000;
   return ret;
 }