From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2138) id 1C4EB38F855E; Wed, 8 Jun 2022 13:29:13 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 1C4EB38F855E Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Andreas Schwab To: glibc-cvs@sourceware.org Subject: [glibc] elf: add missing newlines in lateglobal test X-Act-Checkin: glibc X-Git-Author: Andreas Schwab X-Git-Refname: refs/heads/master X-Git-Oldrev: c7d36dcecc08a29825175f65c4ee873ff3177a23 X-Git-Newrev: c2f39be490150aa748bc74d78d7ee122188a30cf Message-Id: <20220608132913.1C4EB38F855E@sourceware.org> Date: Wed, 8 Jun 2022 13:29:13 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Jun 2022 13:29:13 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c2f39be490150aa748bc74d78d7ee122188a30cf commit c2f39be490150aa748bc74d78d7ee122188a30cf Author: Andreas Schwab Date: Wed Jun 8 15:25:26 2022 +0200 elf: add missing newlines in lateglobal test Diff: --- elf/lateglobal.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/elf/lateglobal.c b/elf/lateglobal.c index 4a1a7cd085..d3cbb3f4b9 100644 --- a/elf/lateglobal.c +++ b/elf/lateglobal.c @@ -15,14 +15,14 @@ main (void) h[0] = dlopen ("ltglobmod1.so", RTLD_LAZY); if (h[0] == NULL) { - printf ("%s: cannot open %s: %s", + printf ("%s: cannot open %s: %s\n", __FUNCTION__, "ltglobmod1.so", dlerror ()); exit (EXIT_FAILURE); } h[1] = dlopen ("ltglobmod2.so", RTLD_LAZY); if (h[1] == NULL) { - printf ("%s: cannot open %s: %s", + printf ("%s: cannot open %s: %s\n", __FUNCTION__, "ltglobmod2.so", dlerror ()); exit (EXIT_FAILURE); } @@ -32,7 +32,7 @@ main (void) fp = dlsym (h[1], "foo"); if (fp == NULL) { - printf ("cannot get address of `foo': %s", dlerror ()); + printf ("cannot get address of `foo': %s\n", dlerror ()); exit (EXIT_FAILURE); }