summaryrefslogtreecommitdiff
path: root/Src
diff options
context:
space:
mode:
Diffstat (limited to 'Src')
-rw-r--r--Src/jobs.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/Src/jobs.c b/Src/jobs.c
index c201ecd96..53e654c2b 100644
--- a/Src/jobs.c
+++ b/Src/jobs.c
@@ -821,6 +821,14 @@ printjob(Job jn, int lng, int synch)
int doneprint = 0;
FILE *fout = (synch == 2) ? stdout : shout;
+ /*
+ * Wow, what a hack. Did I really write this? --- pws
+ */
+ if (jn < jobtab || jn >= jobtab + jobtabsize)
+ job = jn - oldjobtab;
+ else
+ job = jn - jobtab;
+
if (jn->stat & STAT_NOPRINT) {
if (jn->stat & STAT_DONE) {
deletejob(jn);
@@ -834,14 +842,6 @@ printjob(Job jn, int lng, int synch)
return 0;
}
- /*
- * Wow, what a hack. Did I really write this? --- pws
- */
- if (jn < jobtab || jn >= jobtab + jobtabsize)
- job = jn - oldjobtab;
- else
- job = jn - jobtab;
-
if (lng < 0) {
conted = 1;
lng = !!isset(LONGLISTJOBS);