diff options
author | fche <fche> | 2008-01-27 18:27:40 +0000 |
---|---|---|
committer | fche <fche> | 2008-01-27 18:27:40 +0000 |
commit | e2de7195efa37921953248d2a4af565e99bfd249 (patch) | |
tree | d8ab40db0c56f0305b837e33ff53f5dfd110f1cc /runtime | |
parent | 606fd9c839a91aa0db6c925764efcea441164f6b (diff) | |
download | systemtap-steved-e2de7195efa37921953248d2a4af565e99bfd249.tar.gz systemtap-steved-e2de7195efa37921953248d2a4af565e99bfd249.tar.xz systemtap-steved-e2de7195efa37921953248d2a4af565e99bfd249.zip |
2008-01-27 Frank Ch. Eigler <fche@elastic.org>
* stack-i386.c (__stp_stack_print): Correct #elif->#else typo.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/ChangeLog | 4 | ||||
-rw-r--r-- | runtime/stack-i386.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/runtime/ChangeLog b/runtime/ChangeLog index 7536cc88..020d2176 100644 --- a/runtime/ChangeLog +++ b/runtime/ChangeLog @@ -1,3 +1,7 @@ +2008-01-27 Frank Ch. Eigler <fche@elastic.org> + + * stack-i386.c (__stp_stack_print): Correct #elif->#else typo. + 2008-01-14 Martin Hunt <hunt@redhat.com> * print.c (_stp_print_kernel_info): New function. diff --git a/runtime/stack-i386.c b/runtime/stack-i386.c index d73f4c84..b46ff06b 100644 --- a/runtime/stack-i386.c +++ b/runtime/stack-i386.c @@ -23,7 +23,7 @@ static void __stp_stack_print (struct pt_regs *regs, int verbose, int levels) { #ifdef STAPCONF_X86_UNIREGS unsigned long ebp = regs->bp; - #elif + #else unsigned long ebp = regs->ebp; #endif |