diff options
Diffstat (limited to 'apps/unix/x11pdf.c')
-rw-r--r-- | apps/unix/x11pdf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/unix/x11pdf.c b/apps/unix/x11pdf.c index baedbe09..d9f0d036 100644 --- a/apps/unix/x11pdf.c +++ b/apps/unix/x11pdf.c @@ -57,9 +57,9 @@ void winwarn(pdfapp_t *app, char *msg) fprintf(stderr, "apparition: %s\n", msg); } -void winerror(pdfapp_t *app, char *msg) +void winerror(pdfapp_t *app, fz_error *error) { - fprintf(stderr, "apparition: %s\n", msg); + fz_printerror(error); exit(1); } @@ -80,7 +80,7 @@ void winopen(void) xdpy = XOpenDisplay(nil); if (!xdpy) - winerror(&gapp, "could not open display."); + winerror(&gapp, fz_throw("could not open display")); XA_TARGETS = XInternAtom(xdpy, "TARGETS", False); XA_TIMESTAMP = XInternAtom(xdpy, "TIMESTAMP", False); |