some PR feedback

This commit is contained in:
Mitchell Hashimoto
2025-09-24 12:24:47 -07:00
parent 513cdf667b
commit 48827b21d8
4 changed files with 6 additions and 12 deletions

View File

@@ -3,7 +3,9 @@
int main() {
GhosttyOscParser parser;
ghostty_vt_osc_new(NULL, &parser);
if (ghostty_vt_osc_new(NULL, &parser) != GHOSTTY_VT_SUCCESS) {
return 1;
}
ghostty_vt_osc_free(parser);
return 0;
}