diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2021-11-29 03:20:38 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2021-11-29 03:20:38 +0000 |
commit | 7f4778788c43f6e30f4b1ade04890a01ff00b8bc (patch) | |
tree | 9b1e2419d143a1f43989e64c3d84935a6dde208f /lib/libc/gen | |
parent | faf5ae72c8736784f34c0b53cf60044c19de30ca (diff) |
A few sys/param.h annotations lacked ALIGNBYTES
Diffstat (limited to 'lib/libc/gen')
-rw-r--r-- | lib/libc/gen/fts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/fts.c b/lib/libc/gen/fts.c index a833892e903..ea7a48f0540 100644 --- a/lib/libc/gen/fts.c +++ b/lib/libc/gen/fts.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fts.c,v 1.60 2021/01/08 16:06:30 tb Exp $ */ +/* $OpenBSD: fts.c,v 1.61 2021/11/29 03:20:37 deraadt Exp $ */ /*- * Copyright (c) 1990, 1993, 1994 @@ -29,7 +29,7 @@ * SUCH DAMAGE. */ -#include <sys/param.h> /* ALIGN */ +#include <sys/param.h> /* ALIGN ALIGNBYTES */ #include <sys/stat.h> #include <dirent.h> |