Skip to content

Commit

Permalink
Merge pull request #71 from eworm-de/fall-through
Browse files Browse the repository at this point in the history
Fall through
  • Loading branch information
mcarbonneaux authored Jan 7, 2025
2 parents 6f54a64 + fe56ba7 commit 0079e56
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions libfcgi/fcgiapp.c
Original file line number Diff line number Diff line change
Expand Up @@ -468,8 +468,9 @@ int FCGX_VFPrintF(FCGX_Stream *stream, const char *format, va_list arg)
fmtBuff[3] = (char) op;
fmtBuff[4] = '\0';
specifierLength = 4;
break;
}
break;
/* fall through */
case 'L':
case 'h':
sizeModifier = op;
Expand Down Expand Up @@ -570,8 +571,9 @@ int FCGX_VFPrintF(FCGX_Stream *stream, const char *format, va_list arg)
if(*p == 'l' && *(p + 1) == 'l') {
sizeModifier = 'L';
CopyAndAdvance(&fmtBuffPtr, &p, 2);
break;
}
break;
/* fall through */
case 'L':
case 'h':
sizeModifier = *p;
Expand Down

0 comments on commit 0079e56

Please sign in to comment.