summaryrefslogtreecommitdiff
path: root/lib/times.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2009-12-10 20:28:30 +0100
committerBruno Haible <bruno@clisp.org>2009-12-10 20:28:30 +0100
commit441aa3044f43e5572f58c354f01e6bc070acd5c7 (patch)
treebef236e8058dd3469da28ffcd5a6a287222a4c50 /lib/times.c
parent039ae97b8ae35a2446c5d62d72b21689c97da7e2 (diff)
downloadgnulib-441aa3044f43e5572f58c354f01e6bc070acd5c7.tar.gz
Use spaces for indentation, not tabs.
Diffstat (limited to 'lib/times.c')
-rw-r--r--lib/times.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/times.c b/lib/times.c
index f71889a43e..fc8c0dfa28 100644
--- a/lib/times.c
+++ b/lib/times.c
@@ -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);