From 7ca0559c5cd0a4caa7d9766845c7f6aee1095ef0 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Thu, 18 Jan 2018 00:46:38 +0300 Subject: [PATCH] Fix missing EOLn output in threadlibs tool * tools/threadlibs.c [GC_OSF1_THREADS] (main): Print "\n" after "-lrt". --- tools/threadlibs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */ -- 2.40.0