diff options
author | hunt <hunt> | 2007-06-15 15:19:30 +0000 |
---|---|---|
committer | hunt <hunt> | 2007-06-15 15:19:30 +0000 |
commit | 7711e84449611959f6ee4c51ff396e71446d79eb (patch) | |
tree | e26b861a8ecb56503bace0d80c9dfb5c6d2693c7 /runtime/stack-arm.c | |
parent | 4e5724ff0caa7e9b09c149ea69734585611b52b1 (diff) | |
download | systemtap-steved-7711e84449611959f6ee4c51ff396e71446d79eb.tar.gz systemtap-steved-7711e84449611959f6ee4c51ff396e71446d79eb.tar.xz systemtap-steved-7711e84449611959f6ee4c51ff396e71446d79eb.zip |
2007-06-15 Martin Hunt <hunt@redhat.com>
From Quentin Barnes.
* loc2c-runtime.h: Latest arm marcos.
* stack-arm.c (__stp_stack_print): Add a cast.
* regs.c (_stp_ret_addr): Define for arm.
Diffstat (limited to 'runtime/stack-arm.c')
-rw-r--r-- | runtime/stack-arm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/stack-arm.c b/runtime/stack-arm.c index 9d3307ec..0c8ce450 100644 --- a/runtime/stack-arm.c +++ b/runtime/stack-arm.c @@ -59,7 +59,7 @@ static void __stp_stack_print (struct pt_regs *regs, int verbose, int levels) _stp_symbol_print((unsigned long)pc); _stp_print_char('\n'); } else { - _stp_printf("%08lx ", pc); + _stp_printf("%08lx ", (unsigned long)pc); } /* Sanity check the next_fp. */ |