summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2018-01-18 00:46:38 +0300
committerIvan Maidanski <ivmai@mail.ru>2018-01-19 11:41:30 +0300
commit7ca0559c5cd0a4caa7d9766845c7f6aee1095ef0 (patch)
tree838dab704854c596079235b74fa8b395d464f574 /tools
parenta7129ab4e4e40b435fd1835b2a728a11f449b8c5 (diff)
downloadbdwgc-7ca0559c5cd0a4caa7d9766845c7f6aee1095ef0.tar.gz
Fix missing EOLn output in threadlibs tool
* tools/threadlibs.c [GC_OSF1_THREADS] (main): Print "\n" after "-lrt".
Diffstat (limited to 'tools')
-rw-r--r--tools/threadlibs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/threadlibs.c b/tools/threadlibs.c
index a97f91b8..953f1e1c 100644
--- a/tools/threadlibs.c
+++ b/tools/threadlibs.c
@@ -71,7 +71,7 @@ int main(void)
# endif
# endif
# if defined(GC_OSF1_THREADS)
- printf("-pthread -lrt"); /* DOB: must be -pthread, not -lpthread */
+ printf("-pthread -lrt\n"); /* DOB: must be -pthread, not -lpthread */
# endif
/* You need GCC 3.0.3 to build this one! */
/* DG/UX native gcc doesn't know what "-pthread" is */