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>.
This commit is contained in:
Roland McGrath 2003-11-10 01:18:43 +00:00
parent f1ca52ec9a
commit dacb975a0d

View File

@ -4,7 +4,7 @@
/*@end group*/
static int
one (struct dirent *unused)
one (const struct dirent *unused)
{
return 1;
}