Skip to content

Commit

Permalink
Merge pull request #117 from trevorknight/main
Browse files Browse the repository at this point in the history
Add default case for non-exhaustive switch statement
  • Loading branch information
yilun-zhangs authored Aug 5, 2024
2 parents e348c8d + 21ac1b4 commit b60e719
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions code/src/iamf_dec/vlogging_tool_sr.c
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,8 @@ int write_postfix(LOG_TYPE type, char* buf) {
case LOG_DECOP:
len = sprintf(buf, "##\n");
break;
default:
break;
}

return len;
Expand Down

0 comments on commit b60e719

Please sign in to comment.