Xinqi Bao's Git
projects
/
dmenu.git
/ commitdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (from parent 1:
210b303
)
helpful errors
author
Connor Lane Smith <
[email protected]
>
Fri, 6 May 2011 20:13:02 +0000
(21:13 +0100)
committer
Connor Lane Smith <
[email protected]
>
Fri, 6 May 2011 20:13:02 +0000
(21:13 +0100)
dmenu.c
patch
|
blob
|
history
draw.c
patch
|
blob
|
history
diff --git
a/dmenu.c
b/dmenu.c
index
d8ef88f
..
5be73f7
100644
(file)
--- a/
dmenu.c
+++ b/
dmenu.c
@@
-440,9
+440,9
@@
readstdin(void) {
if((p = strchr(buf, '\n')))
*p = '\0';
if(!(item = calloc(1, sizeof *item)))
if((p = strchr(buf, '\n')))
*p = '\0';
if(!(item = calloc(1, sizeof *item)))
- eprintf("cannot malloc %u bytes
\n
", sizeof *item);
+ eprintf("cannot malloc %u bytes
:
", sizeof *item);
if(!(item->text = strdup(buf)))
if(!(item->text = strdup(buf)))
- eprintf("cannot strdup %u bytes
\n
", strlen(buf)+1);
+ eprintf("cannot strdup %u bytes
:
", strlen(buf)+1);
inputw = MAX(inputw, textw(dc, item->text));
}
}
inputw = MAX(inputw, textw(dc, item->text));
}
}
diff --git
a/draw.c
b/draw.c
index
80a5074
..
83ced4b
100644
(file)
--- a/
draw.c
+++ b/
draw.c
@@
-68,6
+68,11
@@
eprintf(const char *fmt, ...) {
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
+
+ if(fmt[strlen(fmt)-1] == ':') {
+ fputc(' ', stderr);
+ perror(NULL);
+ }
exit(EXIT_FAILURE);
}
exit(EXIT_FAILURE);
}
@@
-101,7
+106,7
@@
initdc(void) {
if(!setlocale(LC_CTYPE, "") || !XSupportsLocale())
weprintf("no locale support\n");
if(!(dc = calloc(1, sizeof *dc)))
if(!setlocale(LC_CTYPE, "") || !XSupportsLocale())
weprintf("no locale support\n");
if(!(dc = calloc(1, sizeof *dc)))
- eprintf("cannot malloc %u bytes
\n
", sizeof *dc);
+ eprintf("cannot malloc %u bytes
:
", sizeof *dc);
if(!(dc->dpy = XOpenDisplay(NULL)))
eprintf("cannot open display\n");
if(!(dc->dpy = XOpenDisplay(NULL)))
eprintf("cannot open display\n");