]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* dirent/scandir64.c (scandir64): Adjust declaration to type change.
authorUlrich Drepper <drepper@redhat.com>
Mon, 16 Mar 2009 22:37:22 +0000 (22:37 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 16 Mar 2009 22:37:22 +0000 (22:37 +0000)
ChangeLog
dirent/scandir64.c

index 3bb4ed1204fe9c2540bc86bf3296697c8cd6c945..3bdae6ab674967565c12b6fb867ad186d6d3bc90 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-03-16  Thomas Schwinge  <tschwinge@gnu.org>
+
+       * dirent/scandir64.c (scandir64): Adjust declaration to type change.
+
 2009-03-16  Ulrich Drepper  <drepper@redhat.com>
 
        * nscd/connections.c (restart): Try to preserve the process name
index 68608de9a0c0f33f6eb213c7913e54748fdbcc07..b7bd654658200bd552e07302339600b18ed709ea 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000 Free Software Foundation, Inc.
+/* Copyright (C) 2000, 2009 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -25,6 +25,7 @@
 int scandir64 (__const char *__restrict __dir,
               struct dirent64 ***__restrict __namelist,
               int (*__selector) (__const struct dirent64 *),
-              int (*__cmp) (__const void *, __const void *));
+              int (*__cmp) (__const struct dirent64 **,
+                            __const struct dirent64 **));
 
 #include <dirent/scandir.c>