test-multiarch: terminate printf output with newline

This commit is contained in:
Pino Toscano 2012-11-22 11:34:03 +01:00
parent e061318880
commit 94558d30b1
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-11-22 Pino Toscano <toscano.pino@tiscali.it>
* sysdeps/x86_64/multiarch/test-multiarch.c (get_cpuinfo): Terminate
printf output with newline.
2012-11-21 H.J. Lu <hongjiu.lu@intel.com>
[BZ #14865]

View File

@ -36,7 +36,7 @@ get_cpuinfo (void)
f = fopen ("/proc/cpuinfo", "r");
if (f == NULL)
{
printf ("cannot open /proc/cpuinfo");
printf ("cannot open /proc/cpuinfo\n");
exit (1);
}