diff options
| -rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ ecalloc(size_t nmemb, size_t size) void *p; if (!(p = calloc(nmemb, size))) - perror(NULL); + die("calloc:"); return p; } |
| index : dwm | ||
| dwm fork - fullscreen, suckless status bar and sensibles keybindings |
| aboutsummaryrefslogtreecommitdiffstats |
| -rw-r--r-- | util.c | 2 |
@@ -12,7 +12,7 @@ ecalloc(size_t nmemb, size_t size) void *p; if (!(p = calloc(nmemb, size))) - perror(NULL); + die("calloc:"); return p; } |