{
case '\0':
eos = 1;
- /* don't break here, the path needs to be processed */
-
+ // the path needs to be processed.
+ // fall through
case BABL_PATH_SEPARATOR:
{
char *expanded_path = expand_path (path);
break;
}
case BABL_TRC_FORMULA_SRGB:
+ // fall through
case BABL_TRC_FORMULA_CIE:
{
int lut_size = 512;
}
switch (bytesToWrite) { /* note: everything falls through. */
case 4: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
+ // fall through
case 3: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
+ // fall through
case 2: *--target = (UTF8)((ch | byteMark) & byteMask); ch >>= 6;
+ // fall through
case 1: *--target = (UTF8)(ch | firstByteMark[bytesToWrite]);
}
target += bytesToWrite;