summaryrefslogtreecommitdiff
path: root/src/devices/oprom/yabel/compat/functions.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/oprom/yabel/compat/functions.c')
-rw-r--r--src/devices/oprom/yabel/compat/functions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/oprom/yabel/compat/functions.c b/src/devices/oprom/yabel/compat/functions.c
index 035c8bc86e..c9ef0b7d77 100644
--- a/src/devices/oprom/yabel/compat/functions.c
+++ b/src/devices/oprom/yabel/compat/functions.c
@@ -61,6 +61,6 @@ u64 get_time(void)
"rdtsc"
: "=a"(eax), "=d"(edx)
: /* no inputs, no clobber */);
- act = ((u64) edx << 32) | eax;
+ act = ((u64) edx << 32) | eax;
return act;
}