summaryrefslogtreecommitdiffstats
path: root/image.c
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-01-18 17:21:59 +0100
committerBert <ber.t@gmx.com>2011-01-18 17:21:59 +0100
commitbb4edc756c7ceddb0f13194929cd1d363c85d653 (patch)
treec7da66814615c2b080df7499b77bcf4debd1bb0b /image.c
parent2a2f0307c1e313dde979de2086d93971c57d342b (diff)
downloadnsxiv-bb4edc756c7ceddb0f13194929cd1d363c85d653.tar.zst
Renamed FATAL to DIE
Diffstat (limited to 'image.c')
-rw-r--r--image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/image.c b/image.c
index a2742f4..a430b81 100644
--- a/image.c
+++ b/image.c
@@ -40,7 +40,7 @@ void img_load(img_t *img, char *filename) {
imlib_free_image();
if (!(img->im = imlib_load_image(filename)))
- FATAL("could not open image: %s", filename);
+ DIE("could not open image: %s", filename);
imlib_context_set_image(img->im);