diff options
-rw-r--r-- | bin/ls/stat_flags.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/ls/stat_flags.c b/bin/ls/stat_flags.c index 17d34fba3eb..56f2df2ebc8 100644 --- a/bin/ls/stat_flags.c +++ b/bin/ls/stat_flags.c @@ -1,4 +1,4 @@ -/* $OpenBSD: stat_flags.c,v 1.3 1999/02/14 19:58:10 millert Exp $ */ +/* $OpenBSD: stat_flags.c,v 1.4 1999/09/08 07:21:29 millert Exp $ */ /* $NetBSD: stat_flags.c,v 1.5 1995/09/07 06:43:01 jtc Exp $ */ /*- @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)stat_flags.c 8.2 (Berkeley) 7/28/94"; #else -static char rcsid[] = "$OpenBSD: stat_flags.c,v 1.3 1999/02/14 19:58:10 millert Exp $"; +static char rcsid[] = "$OpenBSD: stat_flags.c,v 1.4 1999/09/08 07:21:29 millert Exp $"; #endif #endif /* not lint */ @@ -62,7 +62,7 @@ static char rcsid[] = "$OpenBSD: stat_flags.c,v 1.3 1999/02/14 19:58:10 millert */ char * flags_to_string(flags, def) - u_long flags; + u_int flags; char *def; { static char string[128]; @@ -107,7 +107,7 @@ flags_to_string(flags, def) int string_to_flags(stringp, setp, clrp) char **stringp; - u_long *setp, *clrp; + u_int *setp, *clrp; { int clear; char *string, *p; |