diff options
author | Thomas Adam <thomas@xteddy.org> | 2015-11-18 14:01:12 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2015-11-18 14:01:12 +0000 |
commit | 8fa822b52106ddb80a33a81ecfbe3c5dea793f31 (patch) | |
tree | 58616aa820133f4c2c01ee1483f1df114ecad5c7 /input.c | |
parent | 93742ed5dfe3b00061ddc55884077a2537c9b43a (diff) | |
parent | 64571368dc19219fc1ef9b6c20034ee143cbed0d (diff) | |
download | rtmux-8fa822b52106ddb80a33a81ecfbe3c5dea793f31.tar.gz rtmux-8fa822b52106ddb80a33a81ecfbe3c5dea793f31.tar.bz2 rtmux-8fa822b52106ddb80a33a81ecfbe3c5dea793f31.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'input.c')
-rw-r--r-- | input.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1924,7 +1924,7 @@ input_utf8_open(struct input_ctx *ictx) struct utf8_data *ud = &ictx->utf8data; if (utf8_open(ud, ictx->ch) != UTF8_MORE) - log_fatalx("UTF-8 open invalid %#x", ictx->ch); + fatalx("UTF-8 open invalid %#x", ictx->ch); log_debug("%s %hhu", __func__, ud->size); @@ -1938,7 +1938,7 @@ input_utf8_add(struct input_ctx *ictx) struct utf8_data *ud = &ictx->utf8data; if (utf8_append(ud, ictx->ch) != UTF8_MORE) - log_fatalx("UTF-8 add invalid %#x", ictx->ch); + fatalx("UTF-8 add invalid %#x", ictx->ch); log_debug("%s", __func__); @@ -1952,7 +1952,7 @@ input_utf8_close(struct input_ctx *ictx) struct utf8_data *ud = &ictx->utf8data; if (utf8_append(ud, ictx->ch) != UTF8_DONE) - log_fatalx("UTF-8 close invalid %#x", ictx->ch); + fatalx("UTF-8 close invalid %#x", ictx->ch); log_debug("%s %hhu '%*s' (width %hhu)", __func__, ud->size, (int)ud->size, ud->data, ud->width); |