diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-09-25 05:03:22 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-09-25 05:03:22 +0000 |
commit | 8b2f9a298db8f86fe731986a936e2d49f63dcc43 (patch) | |
tree | a734749fc447bd1d8e5b06ad03d90ad2af8275ac /llvm/lib | |
parent | ca141a5b285032d378cf9b2ee2719b5a104fd0bb (diff) | |
download | bcm5719-llvm-8b2f9a298db8f86fe731986a936e2d49f63dcc43.tar.gz bcm5719-llvm-8b2f9a298db8f86fe731986a936e2d49f63dcc43.zip |
Wrap to 80 cols.
llvm-svn: 16512
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/System/Linux/TimeValue.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/System/Linux/TimeValue.cpp b/llvm/lib/System/Linux/TimeValue.cpp index e6fad14ff5a..c0cd30b4879 100644 --- a/llvm/lib/System/Linux/TimeValue.cpp +++ b/llvm/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 |