diff options
author | Thomas Adam <thomas@xteddy.org> | 2019-06-28 09:02:24 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2019-06-28 09:02:24 +0100 |
commit | b6b4f86cfc34f9386819af8f04add72833ccc69a (patch) | |
tree | bb3fef4354d3c73198e7c0fbc1d905a38d5bad49 | |
parent | a07df21e79e9a6a1419f75bc45c4b9914b7efa92 (diff) | |
parent | 6ce38b73956836c26c8914cdf5002da7900a5d2d (diff) | |
download | rtmux-b6b4f86cfc34f9386819af8f04add72833ccc69a.tar.gz rtmux-b6b4f86cfc34f9386819af8f04add72833ccc69a.tar.bz2 rtmux-b6b4f86cfc34f9386819af8f04add72833ccc69a.zip |
Merge branch 'obsd-master'
-rw-r--r-- | xmalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -111,7 +111,7 @@ xvasprintf(char **ret, const char *fmt, va_list ap) i = vasprintf(ret, fmt, ap); - if (i < 0 || *ret == NULL) + if (i == -1) fatalx("xasprintf: %s", strerror(errno)); return i; |