summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2013-04-27 14:30:01 +0300
committerEli Zaretskii <eliz@gnu.org>2013-04-27 14:30:01 +0300
commit049f8e88fc72d17e94d5429186ea4b93398a8c5e (patch)
treeb20f7128b2a41a6c8182ae70604b8bda92fc166b
parentda7df54309eb759837a289ade900fe8e3d6ddc36 (diff)
downloadgunmake-049f8e88fc72d17e94d5429186ea4b93398a8c5e.tar.gz
job.c: Fix compilation error on GNU/Linux due to "label at end of compound statement".
-rw-r--r--ChangeLog5
-rw-r--r--job.c7
2 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index dc1d2ff..93fa286 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2013-04-27 Eli Zaretskii <eliz@gnu.org>
+
+ * job.c: Fix compilation error on GNU/Linux due to "label at end
+ of compound statement".
+
2013-04-27 Frank Heckenbach <f.heckenbach@fh-soft.de> (tiny change)
* job.c (sync_output): Don't discard the output if
diff --git a/job.c b/job.c
index 18494f6..4d0120e 100644
--- a/job.c
+++ b/job.c
@@ -620,13 +620,18 @@ pump_from_tmp_fd (int from_fd, int to_fd)
nleft -= nwrite;
}
}
-finished:
+
+ finished:
#ifdef WINDOWS32
/* Switch to_fd back to its original mode, so that log messages by
Make have the same EOL format as without --output-sync. */
_setmode (to_fd, prev_mode);
#endif
+
+ /* This is needed to avoid the "label at end of compound statement"
+ diagnostics on Posix platforms. */
+ return;
}
/* Support routine for sync_output() */