cinera.c: Add a break to a switch case

This commit is contained in:
Matt Mascarenhas 2022-07-21 19:50:18 +01:00
parent f7a6df994f
commit 91c33c580b
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ typedef struct
version CINERA_APP_VERSION = {
.Major = 0,
.Minor = 10,
.Patch = 6
.Patch = 7
};
#include <pthread.h>
@ -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;