aboutsummaryrefslogtreecommitdiff
path: root/tcctools.c
diff options
context:
space:
mode:
Diffstat (limited to 'tcctools.c')
-rw-r--r--tcctools.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tcctools.c b/tcctools.c
index a316527..53d88be 100644
--- a/tcctools.c
+++ b/tcctools.c
@@ -363,9 +363,8 @@ usage:
ret = tcc_get_dllexports(file, &p);
if (ret || !p) {
fprintf(stderr, "tcc: impdef: %s '%s'\n",
- ret == 32 ? "can't read symbols from 32bit" :
- ret == 64 ? "can't read symbols from 64bit" :
ret == -1 ? "can't find file" :
+ ret == 1 ? "can't read symbols" :
ret == 0 ? "no symbols found in" :
"unknown file type", file);
ret = 1;