diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-26 23:02:55 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1999-11-26 23:02:55 +0000 |
commit | 73211a040c13d3122e668e94ffd03684de95bedd (patch) | |
tree | ca7238ae089648900824fe9e01d67019f4f5633e /bin/ls | |
parent | 634cd633629ad13698a7042e4ceac2e0c9b4d4a8 (diff) |
fix flags_to_string() proto
Diffstat (limited to 'bin/ls')
-rw-r--r-- | bin/ls/extern.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ls/extern.h b/bin/ls/extern.h index 3a206c4c534..2aaddae1dd4 100644 --- a/bin/ls/extern.h +++ b/bin/ls/extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.h,v 1.4 1999/05/01 23:54:47 deraadt Exp $ */ +/* $OpenBSD: extern.h,v 1.5 1999/11/26 23:02:54 millert Exp $ */ /* $NetBSD: extern.h,v 1.5 1995/03/21 09:06:24 cgd Exp $ */ /*- @@ -47,7 +47,7 @@ int revstatcmp __P((const FTSENT *, const FTSENT *)); int sizecmp __P((const FTSENT *, const FTSENT *)); int revsizecmp __P((const FTSENT *, const FTSENT *)); -char *flags_to_string __P((u_long, char *)); +char *flags_to_string __P((u_int, char *)); int putname __P((char *)); void printcol __P((DISPLAY *)); void printacol __P((DISPLAY *)); |