aboutsummaryrefslogtreecommitdiffstats
path: root/lib/System/Linux
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-09-25 05:03:22 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-09-25 05:03:22 +0000
commit1fc194c610862cb49c3e39554ca4d2e45a6840f2 (patch)
tree35f873438015fa35c186fd6ca811398ff7b25aa3 /lib/System/Linux
parent9926c3135169d3c1fa60efe731ed7aebb11f2227 (diff)
downloadexternal_llvm-1fc194c610862cb49c3e39554ca4d2e45a6840f2.zip
external_llvm-1fc194c610862cb49c3e39554ca4d2e45a6840f2.tar.gz
external_llvm-1fc194c610862cb49c3e39554ca4d2e45a6840f2.tar.bz2
Wrap to 80 cols.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16512 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Linux')
-rw-r--r--lib/System/Linux/TimeValue.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/System/Linux/TimeValue.cpp b/lib/System/Linux/TimeValue.cpp
index e6fad14..c0cd30b 100644
--- a/lib/System/Linux/TimeValue.cpp
+++ b/lib/System/Linux/TimeValue.cpp
@@ -30,7 +30,8 @@ void TimeValue::now() {
ThrowErrno("Couldn't obtain time of day");
this->set( static_cast<TimeValue::SecondsType>( the_time.tv_sec ),
- static_cast<TimeValue::NanoSecondsType>( the_time.tv_usec * NANOSECONDS_PER_MICROSECOND ) );
+ static_cast<TimeValue::NanoSecondsType>( the_time.tv_usec *
+ NANOSECONDS_PER_MICROSECOND ) );
}
// vim: sw=2 smartindent smarttab tw=80 autoindent expandtab