From b3f97a85c8a4288f3d075c91abf4dff69e32cd52 Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Sun, 8 Jan 2023 23:26:24 -0800 Subject: [PATCH] Move misplaced 'break' out of 'if' consequent --- src/kprint.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/kprint.c b/src/kprint.c index dd4d658..697c079 100644 --- a/src/kprint.c +++ b/src/kprint.c @@ -101,9 +101,8 @@ void prindatum(LispPTR x) { newstring = (NEWSTRINGP *)NativeAligned4FromLAddr(x); if (newstring->stringp) { print_NEWstring(x); - break; } - + break; default: dtd_base = (struct dtd *)GetDTD(typen); printf("{"); #ifdef BIGVM if ((typename = dtd_base->dtd_name) != 0)