Add missing break statement to PAUSE_STMT_CLASS case in exec_stmt().

This commit is contained in:
Gene Stark 2022-04-11 18:52:21 -04:00
parent b74ac13807
commit 88db904892
2 changed files with 1 additions and 0 deletions

Binary file not shown.

View File

@ -256,6 +256,7 @@ int exec_stmt(STMT *stmt) {
{ {
jobs_pause(); jobs_pause();
} }
break;
default: default:
fprintf(stderr, "Unknown statement class: %d\n", stmt->class); fprintf(stderr, "Unknown statement class: %d\n", stmt->class);
abort(); abort();