summaryrefslogtreecommitdiff
path: root/foomaticrip.c
diff options
context:
space:
mode:
Diffstat (limited to 'foomaticrip.c')
-rw-r--r--foomaticrip.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/foomaticrip.c b/foomaticrip.c
index b548b1e..aad3953 100644
--- a/foomaticrip.c
+++ b/foomaticrip.c
@@ -1602,7 +1602,8 @@ int main(int argc, char** argv)
PostScript file (all before the first page begins). */
optionset_copy_values(optionset("userval"), optionset("header"));
- print_file(filename, 1);
+ if (!print_file(filename, 1))
+ rip_die(EXIT_PRNERR_NORETRY, "Could not print file %s\n", filename);
filename = strtok_r(NULL, " ", &p);
}
@@ -1639,6 +1640,6 @@ int main(int argc, char** argv)
list_free(arglist);
- return 0;
+ return EXIT_PRINTED;
}