Fix sparc64 build.
authorDavid S. Miller <davem@davemloft.net>
Thu, 25 Oct 2012 22:41:32 +0000 (15:41 -0700)
committerDavid S. Miller <davem@davemloft.net>
Thu, 25 Oct 2012 22:41:32 +0000 (15:41 -0700)
* sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
(__get_clockfreq_via_proc_openprom): Use strtoumax instead
of strtoull.

ChangeLog
sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c

index 6656fa1..f812784 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2012-10-25  David S. Miller  <davem@davemloft.net>
+
+       * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
+       (__get_clockfreq_via_proc_openprom): Use strtoumax instead
+       of strtoull.
+
 2012-10-25  Roland McGrath  <roland@hack.frob.com>
 
        * sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
index abd0ebf..cb31e5c 100644 (file)
@@ -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);
                        }
                    }