frexpl: Update regarding AIX.
[gnulib.git] / lib / times.c
index f71889a..65f9c74 100644 (file)
@@ -1,6 +1,6 @@
 /* Get process times
 
-   Copyright (C) 2008 Free Software Foundation, Inc.
+   Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -55,7 +55,7 @@ times (struct tms * buffer)
   FILETIME creation_time, exit_time, kernel_time, user_time;
 
   if (GetProcessTimes (GetCurrentProcess (), &creation_time, &exit_time,
-                      &kernel_time, &user_time) == 0)
+                       &kernel_time, &user_time) == 0)
     return (clock_t) -1;
 
   buffer->tms_utime = filetime2clock (user_time);