about summary refs log tree commit diff
path: root/sysdeps
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2012-10-25 14:49:28 -0700
committerRoland McGrath <roland@hack.frob.com>2012-10-25 14:49:28 -0700
commit1e9d84cdbc46301a0d9e83f7044393f7d8139382 (patch)
tree695edfbf5188a69272ff420fb4dd2d858ab8edbb /sysdeps
parentc0a1472e2272045d6520eb92f6a5438e2323b79b (diff)
downloadglibc-1e9d84cdbc46301a0d9e83f7044393f7d8139382.tar.gz
glibc-1e9d84cdbc46301a0d9e83f7044393f7d8139382.tar.xz
glibc-1e9d84cdbc46301a0d9e83f7044393f7d8139382.zip
Use __getdents instead of __getdirentries in sparc __get_clockfreq_via_proc_openprom.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c b/sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
index 67ff77fa8c..abd0ebfb9f 100644
--- a/sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
+++ b/sysdeps/unix/sysv/linux/sparc/sparc64/get_clockfreq.c
@@ -91,11 +91,9 @@ __get_clockfreq_via_proc_openprom (void)
     {
       unsigned long int buf[4096 / sizeof (unsigned long int)];
       struct dirent *dirp = (struct dirent *) buf;
-      off_t dbase = (off_t) 0;
       ssize_t len;
 
-      while ((len = __getdirentries (obp_fd, (char *) dirp,
-                                     sizeof (buf), &dbase)) > 0)
+      while ((len = __getdents (obp_fd, (char *) dirp, sizeof (buf))) > 0)
 	{
 	  struct dirent *this_dirp = dirp;