From 91c33c580b60b765c5b8c24b3d07653772b044e2 Mon Sep 17 00:00:00 2001 From: Matt Mascarenhas Date: Thu, 21 Jul 2022 19:50:18 +0100 Subject: [PATCH] cinera.c: Add a break to a switch case --- cinera/cinera.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cinera/cinera.c b/cinera/cinera.c index aae1a59..50e5c0d 100644 --- a/cinera/cinera.c +++ b/cinera/cinera.c @@ -23,7 +23,7 @@ typedef struct version CINERA_APP_VERSION = { .Major = 0, .Minor = 10, - .Patch = 6 + .Patch = 7 }; #include @@ -11574,7 +11574,7 @@ BuffersToHTML(config *C, project *Project, buffers *CollationBuffers, template * // TODO(matt): If we add project icons to the nav - and, frankly, we will want project art at some // point - we'll need to correctly offset its landmarks here CopyLandmarkedBuffer(&Master, &Tag->Nav->Buffer, 0, PageType); - } + } break; case TAG_CUSTOM0: CopyStringToBufferNoFormat(&Master, Wrap0i(CollationBuffers->Custom0, sizeof(CollationBuffers->Custom0))); break; case TAG_CUSTOM1: CopyStringToBufferNoFormat(&Master, Wrap0i(CollationBuffers->Custom1, sizeof(CollationBuffers->Custom1))); break; case TAG_CUSTOM2: CopyStringToBufferNoFormat(&Master, Wrap0i(CollationBuffers->Custom2, sizeof(CollationBuffers->Custom2))); break;