diff options
| author | David Malone <dwmalone@FreeBSD.org> | 2004-05-30 10:10:41 +0000 |
|---|---|---|
| committer | David Malone <dwmalone@FreeBSD.org> | 2004-05-30 10:10:41 +0000 |
| commit | 2c8aff0a0480f991dc88ef1eecf3390a365d546d (patch) | |
| tree | 4661e3bad8fb8db182d7505bdda2f4731f84fcdc | |
| parent | 0f2ffc4e3173c23a26f1186682ed469d474084d2 (diff) | |
Notes
| -rw-r--r-- | sbin/kldstat/kldstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/kldstat/kldstat.c b/sbin/kldstat/kldstat.c index 2469999f6f8eb..ce5ebf489ba07 100644 --- a/sbin/kldstat/kldstat.c +++ b/sbin/kldstat/kldstat.c @@ -37,7 +37,7 @@ __FBSDID("$FreeBSD$"); #include <sys/module.h> #include <sys/linker.h> -#define POINTER_WIDTH (sizeof(void *) > 4 ? 18 : 10) +#define POINTER_WIDTH ((int)(sizeof(void *) * 2 + 2)) static void printmod(int modid) |
