diff options
| author | Ed Maste <emaste@FreeBSD.org> | 2021-01-09 18:34:58 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@FreeBSD.org> | 2021-01-09 18:34:58 +0000 |
| commit | c8eee7c0bf9a01303c75b4c3ac644b99adc70ca9 (patch) | |
| tree | 0051025372a6ad50f20b31f1204fde1fde2cea9d /usr.bin/ldd | |
| parent | 12a8d3027d414abd15798de1b6d8b01151bdac50 (diff) | |
Diffstat (limited to 'usr.bin/ldd')
| -rw-r--r-- | usr.bin/ldd/ldd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ldd/ldd.c b/usr.bin/ldd/ldd.c index 892cf9bb3cc5..08c91d829bd7 100644 --- a/usr.bin/ldd/ldd.c +++ b/usr.bin/ldd/ldd.c @@ -72,9 +72,9 @@ static int is_executable(const char *fname, int fd, int *is_shlib, static void usage(void); #define TYPE_UNKNOWN 0 -#define TYPE_ELF 2 /* Architecture default */ +#define TYPE_ELF 1 /* Architecture default */ #if __ELF_WORD_SIZE > 32 && defined(ELF32_SUPPORTED) -#define TYPE_ELF32 3 /* Explicit 32 bits on architectures >32 bits */ +#define TYPE_ELF32 2 /* Explicit 32 bits on architectures >32 bits */ #define _PATH_LDD32 "/usr/bin/ldd32" |
