mirror of
https://github.com/Hamlib/Hamlib
synced 2026-08-13 17:32:05 -04:00
Fix precise_time.c
This commit is contained in:
parent
494252fe1c
commit
97b341eb3f
1 changed files with 1 additions and 1 deletions
|
|
@ -141,7 +141,7 @@ static int showme = 0;
|
|||
: "=r" (hi), "=r" (lo) : : "%rax", "%rbx", "%rcx", "%rdx");
|
||||
hi64 = hi;
|
||||
lo64 = lo;
|
||||
return (hi64 << 32) | lo64);
|
||||
return (hi64 << 32) | lo64;
|
||||
}
|
||||
|
||||
static uint64_t rdtsc_per_sec = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue