X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fbreakpoint.c;h=44f78d732387541f2651e33855f4cce0f769d9e5;hb=cb7837b769ce190baec60a2159c33099816ea6e3;hp=903591a0e9bad804f704329c5f8552e65815932f;hpb=cea4896b2482b7b2b429c1631d774b4cfbc0efba;p=sbcl.git diff --git a/src/runtime/breakpoint.c b/src/runtime/breakpoint.c index 903591a..44f78d7 100644 --- a/src/runtime/breakpoint.c +++ b/src/runtime/breakpoint.c @@ -85,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;