]> git.sur5r.net Git - i3/i3status/commit
No longer use a temporary buffer in the die() function
authorOlivier Gayot <olivier.gayot@sigexec.com>
Mon, 11 Jun 2018 22:52:29 +0000 (00:52 +0200)
committerOlivier Gayot <olivier.gayot@sigexec.com>
Wed, 20 Jun 2018 09:01:59 +0000 (11:01 +0200)
commitca8c3e73372babbf1aaa47db55a9360739ca37c5
tree36437322d9bbb7df6af846f89eda0fff8b4c4304
parent64fd6e10478cabd0e2f9b554b71971a865c02d60
No longer use a temporary buffer in the die() function

Before the following change

  f947d0a Breaks configfiles! Major refactoring of i3status, see below

The die(fmt, ...) function was outputting the reason to the status bar
in addition to stderr. For this reason, it was meaningful to create a
temporary string according to the format string and then passing it
around to the different functions.

Nowadays, we only display the error message to stderr so calling
fprintf(stderr, ...) is much simpler.

Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
src/general.c