csi: add missing 'break'

This commit is contained in:
Daniel Eklöf 2019-07-16 10:20:47 +02:00
parent 288cee0c1f
commit 4038a8a198
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

1
csi.c
View file

@ -840,6 +840,7 @@ csi_dispatch(struct terminal *term, uint8_t final)
default:
LOG_ERR("unimplemented: %s", csi_as_string(term, final));
abort();
break;
}
break; /* private == '>' */