summaryrefslogtreecommitdiff
path: root/libhurd-mm/as-dump.c
diff options
context:
space:
mode:
Diffstat (limited to 'libhurd-mm/as-dump.c')
-rw-r--r--libhurd-mm/as-dump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libhurd-mm/as-dump.c b/libhurd-mm/as-dump.c
index 27dfc6d..f0f8e1f 100644
--- a/libhurd-mm/as-dump.c
+++ b/libhurd-mm/as-dump.c
@@ -33,13 +33,13 @@
#endif
static void
-print_nr (int width, l4_int64_t nr, bool hex)
+print_nr (int width, int64_t nr, bool hex)
{
int base = 10;
if (hex)
base = 16;
- l4_int64_t v = nr;
+ int64_t v = nr;
int w = 0;
if (v < 0)
{