X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fbreakpoint.c;h=44f78d732387541f2651e33855f4cce0f769d9e5;hb=4cf50b1896b25f5337e7c258b0b560da00d47993;hp=d4f351649d55b7e64cd1c6ccbf9714227ea515a2;hpb=a530bbe337109d898d5b4a001fc8f1afa3b5dc39;p=sbcl.git diff --git a/src/runtime/breakpoint.c b/src/runtime/breakpoint.c index d4f3516..44f78d7 100644 --- a/src/runtime/breakpoint.c +++ b/src/runtime/breakpoint.c @@ -9,10 +9,6 @@ * files for more information. */ -/* - * $Header$ - */ - #include #include @@ -89,7 +85,8 @@ static lispobj find_code(os_context_t *context) #ifdef __i386__ static lispobj find_code(os_context_t *context) { - lispobj codeptr = component_ptr_from_pc(*os_context_pc_addr(context)); + lispobj codeptr = + (lispobj)component_ptr_from_pc((lispobj *)(*os_context_pc_addr(context))); if (codeptr == 0) { return NIL;