mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
csi: tweak logging: no need to mention 'CSI' twice
This commit is contained in:
parent
1f263256a3
commit
b583e63bba
1 changed files with 3 additions and 3 deletions
6
csi.c
6
csi.c
|
|
@ -832,8 +832,9 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
break;
|
||||
|
||||
default:
|
||||
LOG_ERR("unimplemented: CSI %s", csi_as_string(term, final));
|
||||
LOG_ERR("unimplemented: %s", csi_as_string(term, final));
|
||||
abort();
|
||||
break;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
|
@ -848,9 +849,8 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
break;
|
||||
|
||||
default:
|
||||
LOG_ERR("unimplemented: %s", csi_as_string(term, final));
|
||||
LOG_ERR("unimplemented: CSI %s", csi_as_string(term, final));
|
||||
abort();
|
||||
break;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue