From: Ivan Maidanski Date: Wed, 17 Jan 2018 21:46:38 +0000 (+0300) Subject: Fix missing EOLn output in threadlibs tool X-Git-Tag: v7.4.10~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ca0559c5cd0a4caa7d9766845c7f6aee1095ef0;p=gc Fix missing EOLn output in threadlibs tool * tools/threadlibs.c [GC_OSF1_THREADS] (main): Print "\n" after "-lrt". --- 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 */