summaryrefslogtreecommitdiffstats
path: root/runtime/stack-i386.c
diff options
context:
space:
mode:
authorfche <fche>2008-01-27 18:27:40 +0000
committerfche <fche>2008-01-27 18:27:40 +0000
commite2de7195efa37921953248d2a4af565e99bfd249 (patch)
treed8ab40db0c56f0305b837e33ff53f5dfd110f1cc /runtime/stack-i386.c
parent606fd9c839a91aa0db6c925764efcea441164f6b (diff)
downloadsystemtap-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/stack-i386.c')
-rw-r--r--runtime/stack-i386.c2
1 files changed, 1 insertions, 1 deletions
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