cinera.c: Add a break to a switch case
This commit is contained in:
parent
f7a6df994f
commit
91c33c580b
|
@ -23,7 +23,7 @@ typedef struct
|
||||||
version CINERA_APP_VERSION = {
|
version CINERA_APP_VERSION = {
|
||||||
.Major = 0,
|
.Major = 0,
|
||||||
.Minor = 10,
|
.Minor = 10,
|
||||||
.Patch = 6
|
.Patch = 7
|
||||||
};
|
};
|
||||||
|
|
||||||
#include <pthread.h>
|
#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
|
// 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
|
// point - we'll need to correctly offset its landmarks here
|
||||||
CopyLandmarkedBuffer(&Master, &Tag->Nav->Buffer, 0, PageType);
|
CopyLandmarkedBuffer(&Master, &Tag->Nav->Buffer, 0, PageType);
|
||||||
}
|
} break;
|
||||||
case TAG_CUSTOM0: CopyStringToBufferNoFormat(&Master, Wrap0i(CollationBuffers->Custom0, sizeof(CollationBuffers->Custom0))); 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_CUSTOM1: CopyStringToBufferNoFormat(&Master, Wrap0i(CollationBuffers->Custom1, sizeof(CollationBuffers->Custom1))); break;
|
||||||
case TAG_CUSTOM2: CopyStringToBufferNoFormat(&Master, Wrap0i(CollationBuffers->Custom2, sizeof(CollationBuffers->Custom2))); break;
|
case TAG_CUSTOM2: CopyStringToBufferNoFormat(&Master, Wrap0i(CollationBuffers->Custom2, sizeof(CollationBuffers->Custom2))); break;
|
||||||
|
|
Loading…
Reference in New Issue