Remove single occurance of die, and then remove die itself.
This commit is contained in:
parent
9bb28772ed
commit
4664fba970
11
util.c
11
util.c
|
@ -28,17 +28,6 @@
|
||||||
|
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
void
|
|
||||||
die(const char *fmt, ...)
|
|
||||||
{
|
|
||||||
va_list ap;
|
|
||||||
|
|
||||||
va_start(ap, fmt);
|
|
||||||
vfprintf(stderr, fmt, ap);
|
|
||||||
va_end(ap);
|
|
||||||
abort();
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
void
|
||||||
eprint(const char *fmt, ...)
|
eprint(const char *fmt, ...)
|
||||||
{
|
{
|
||||||
|
|
2
xutil.c
2
xutil.c
|
@ -129,7 +129,7 @@ initxcolor(int screen, const char *colstr)
|
||||||
&screenColor,
|
&screenColor,
|
||||||
&exactColor);
|
&exactColor);
|
||||||
if(!ret)
|
if(!ret)
|
||||||
die("awesome: error, cannot allocate color '%s'\n", colstr);
|
eprint("awesome: error, cannot allocate color '%s'\n", colstr);
|
||||||
return screenColor;
|
return screenColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue