diff options
author | Roland McGrath <roland@gnu.org> | 2003-11-10 01:18:43 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-11-10 01:18:43 +0000 |
commit | dacb975a0d96c3cacd7520215c6f0da7d6501ba6 (patch) | |
tree | c3152ae5a40f40c1bd26d58bd0cceb99df0e397f /manual/examples | |
parent | f1ca52ec9a64965dbc626e85c1940fa2ad9fab3d (diff) | |
download | glibc-dacb975a0d96c3cacd7520215c6f0da7d6501ba6.tar.gz glibc-dacb975a0d96c3cacd7520215c6f0da7d6501ba6.tar.xz glibc-dacb975a0d96c3cacd7520215c6f0da7d6501ba6.zip |
2003-11-09 Roland McGrath <roland@redhat.com>
* manual/examples/dir2.c (one): Add const to argument type. Reported by J de Haan <j.de.haan@home.nl>.
Diffstat (limited to 'manual/examples')
-rw-r--r-- | manual/examples/dir2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/examples/dir2.c b/manual/examples/dir2.c index e3157694bd..a75c885742 100644 --- a/manual/examples/dir2.c +++ b/manual/examples/dir2.c @@ -4,7 +4,7 @@ /*@end group*/ static int -one (struct dirent *unused) +one (const struct dirent *unused) { return 1; } |