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.6.4~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8a6a5d5df57ea4df82c684df49aeef1c67d099b7;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 96537bdb..bebca536 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 */