mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Fix sparc64 build.
* sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c (__get_clockfreq_via_proc_openprom): Use strtoumax instead of strtoull.
This commit is contained in:
@ -129,7 +129,7 @@ __get_clockfreq_via_proc_openprom (void)
|
||||
if (read (clkfreq_fd, type_string,
|
||||
sizeof (type_string)) > 0)
|
||||
result = (hp_timing_t)
|
||||
strtoull (type_string, NULL, 16);
|
||||
strtoumax (type_string, NULL, 16);
|
||||
close (clkfreq_fd);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user