aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils/os_utils.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2019-04-10 23:30:09 -0400
committerJack Lloyd <[email protected]>2019-04-10 23:30:09 -0400
commitf8380066cbb5795f22cbbe8d35e4f279726026f1 (patch)
treea8cfbef1a83de51b7d56b2e1970fcbb608b6b9c1 /src/lib/utils/os_utils.cpp
parent8f06e9be6fdbac36de05ed6e6eb5e195f8b3c58b (diff)
Remove tab characters
Diffstat (limited to 'src/lib/utils/os_utils.cpp')
-rw-r--r--src/lib/utils/os_utils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/utils/os_utils.cpp b/src/lib/utils/os_utils.cpp
index eb459b8fb..516a2cabd 100644
--- a/src/lib/utils/os_utils.cpp
+++ b/src/lib/utils/os_utils.cpp
@@ -136,10 +136,10 @@ uint64_t OS::get_cpu_cycle_counter()
asm volatile("mftbu %0" : "=r" (rtc_high2));
if(rtc_high == rtc_high2)
- {
+ {
rtc = (static_cast<uint64_t>(rtc_high) << 32) | rtc_low;
break;
- }
+ }
}
#elif defined(BOTAN_TARGET_ARCH_IS_ALPHA)