From f0e66eea37a4053576a6d39aa9829ce0c21a1bc3 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Wed, 2 Dec 2009 23:09:05 -0700 Subject: [PATCH] remove extra semicolon --- src/compile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compile.cpp b/src/compile.cpp index 0434215f42..541a5d9bcd 100644 --- a/src/compile.cpp +++ b/src/compile.cpp @@ -1886,7 +1886,7 @@ makeCurrentContinuation(MyThread* t, void** targetIp, void** targetBase, *targetIp = ip; *targetBase = base; *targetStack = static_cast(stack) - + t->arch->frameReturnAddressSize();; + + t->arch->frameReturnAddressSize(); } }