summaryrefslogtreecommitdiff
path: root/src/libmach/5db.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libmach/5db.c')
-rw-r--r--src/libmach/5db.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libmach/5db.c b/src/libmach/5db.c
index aea391edf..ae71dd90d 100644
--- a/src/libmach/5db.c
+++ b/src/libmach/5db.c
@@ -307,7 +307,7 @@ gsymoff(char *buf, int n, long v, int space)
if (!delta)
return snprint(buf, n, "%s", s.name);
if (s.type != 't' && s.type != 'T')
- return snprint(buf, n, "%s+%lux", s.name, v-s.value);
+ return snprint(buf, n, "%s+%llux", s.name, v-s.value);
else
return snprint(buf, n, "#%lux", v);
}