diff options
Diffstat (limited to 'winsup/cygwin/times.cc')
-rw-r--r-- | winsup/cygwin/times.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/times.cc b/winsup/cygwin/times.cc index 635d89268..06a98dde4 100644 --- a/winsup/cygwin/times.cc +++ b/winsup/cygwin/times.cc @@ -40,7 +40,7 @@ __to_clock_t (FILETIME * src, int flag) total -= FACTOR; total /= (unsigned long long) (NSPERSEC / CLOCKS_PER_SEC); - syscall_printf ("total %08x %08x\n", (unsigned)(total>>32), (unsigned)(total)); + syscall_printf ("total %08x %08x", (unsigned)(total>>32), (unsigned)(total)); return total; } |