0.pre7.104:
[sbcl.git] / src / runtime / breakpoint.c
index 1ad416c..d69e9c2 100644 (file)
@@ -93,14 +93,14 @@ static lispobj find_code(os_context_t *context)
 #ifdef __i386__
 static lispobj find_code(os_context_t *context)
 {
-  lispobj codeptr =
-      (lispobj)component_ptr_from_pc((lispobj *)(*os_context_pc_addr(context)));
-
-  if (codeptr == 0) {
-      return NIL;
-  } else {
-      return codeptr + OTHER_POINTER_LOWTAG;
-  }
+    lispobj codeptr =
+       (lispobj)component_ptr_from_pc((lispobj *)(*os_context_pc_addr(context)));
+
+    if (codeptr == 0) {
+       return NIL;
+    } else {
+       return codeptr + OTHER_POINTER_LOWTAG;
+    }
 }
 #endif