X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Finterr.c;h=a5f8650c5ecd9109b5079bb9e91d8716be293844;hb=3bd7a97d1b11a2b0aee086ef211cae807f3dfc35;hp=b8a863f5077f23c59c4f2c39ab9737c38d281d52;hpb=81cfdf526490d642c73602ebac9bcacb8af644e1;p=sbcl.git diff --git a/src/runtime/interr.c b/src/runtime/interr.c index b8a863f..a5f8650 100644 --- a/src/runtime/interr.c +++ b/src/runtime/interr.c @@ -160,7 +160,7 @@ lispobj debug_print(lispobj string) that %primitive print is used (it's only a debugging aid anyway) we just put guarantee our safety by putting an unused buffer on the stack before doing anything else here */ - char untouched[32]; + char untouched[32]; /* GCC warns about not using this, but that's the point.. */ fprintf(stderr, "%s\n", (char *)(((struct vector *)native_pointer(string))->data),untouched); return NIL;