diff options
Diffstat (limited to 'gprof/vax.c')
-rw-r--r-- | gprof/vax.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gprof/vax.c b/gprof/vax.c index c1f77df..1a7bd8d 100644 --- a/gprof/vax.c +++ b/gprof/vax.c @@ -296,7 +296,7 @@ vax_find_call (parent, p_lowpc, p_highpc) * [are there others that we miss?, * e.g. arrays of pointers to functions???] */ - arc_add (parent, &indirectchild, (long) 0); + arc_add (parent, &indirectchild, (unsigned long) 0); length += vax_operandlength ( (struct modebyte *) (instructp + length)); continue; @@ -323,7 +323,7 @@ vax_find_call (parent, p_lowpc, p_highpc) /* * a hit */ - arc_add (parent, child, (long) 0); + arc_add (parent, child, (unsigned long) 0); length += vax_operandlength ((struct modebyte *) (instructp + length)); continue; |