diff options
author | nicm <nicm> | 2022-11-11 08:37:55 +0000 |
---|---|---|
committer | nicm <nicm> | 2022-11-11 08:37:55 +0000 |
commit | fe475bd856ff1f98bf8a4cd9b6aedd5da81a7e3c (patch) | |
tree | ba0e97250decc80f35884724c7cbf57b980aa935 /input.c | |
parent | 079f48e8a6131b2ef46b370c0905252d29d9d815 (diff) | |
download | rtmux-fe475bd856ff1f98bf8a4cd9b6aedd5da81a7e3c.tar.gz rtmux-fe475bd856ff1f98bf8a4cd9b6aedd5da81a7e3c.tar.bz2 rtmux-fe475bd856ff1f98bf8a4cd9b6aedd5da81a7e3c.zip |
Parse primary device attributes as well as secondary and add a SIXEL
flag (not used yet), from Anindya Mukherjee.
Diffstat (limited to 'input.c')
-rw-r--r-- | input.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1345,8 +1345,8 @@ input_csi_dispatch(struct input_ctx *ictx) if (ictx->flags & INPUT_DISCARD) return (0); - log_debug("%s: '%c' \"%s\" \"%s\"", - __func__, ictx->ch, ictx->interm_buf, ictx->param_buf); + log_debug("%s: '%c' \"%s\" \"%s\"", __func__, ictx->ch, + ictx->interm_buf, ictx->param_buf); if (input_split(ictx) != 0) return (0); |