svn commit: trunk/uClibc/utils

vapier at uclibc.org vapier at uclibc.org
Wed Jan 11 04:06:50 UTC 2006


Author: vapier
Date: 2006-01-10 20:06:49 -0800 (Tue, 10 Jan 2006)
New Revision: 13236

Log:
remove newlines from warning messages

Modified:
   trunk/uClibc/utils/ldconfig.c


Changeset:
Modified: trunk/uClibc/utils/ldconfig.c
===================================================================
--- trunk/uClibc/utils/ldconfig.c	2006-01-11 04:04:16 UTC (rev 13235)
+++ trunk/uClibc/utils/ldconfig.c	2006-01-11 04:06:49 UTC (rev 13236)
@@ -303,7 +303,7 @@
 		    {
 			/* always call readsoname to update type */
 			if(expected_type == LIB_DLL) {
-			    warnx("%s is not an a.out library, its ELF!\n", buff);
+			    warnx("%s is not an a.out library, it's ELF!", buff);
 			    expected_type=LIB_ANY;
 			}
 			*type = LIB_ELF;
@@ -526,7 +526,7 @@
 		    }
 		    else
 		    {
-			warnx("Unknown type field '%s' for dir '%s' - ignored\n", t, name);
+			warnx("Unknown type field '%s' for dir '%s' - ignored", t, name);
 			expected_type = LIB_ANY;
 		    }
 		}
@@ -1055,7 +1055,7 @@
 			if (strcmp(UCLIBC_RUNTIME_PREFIX "lib", cp) == 0 ||
 			    strcmp(UCLIBC_RUNTIME_PREFIX "usr/lib", cp) == 0) {
 				if (verbose >= 0)
-					warnx("Remove `%s' from `%s'\n", cp, LDSO_CONF);
+					warnx("You should remove `%s' from `%s'", cp, LDSO_CONF);
 				continue;
 			}
 		    scan_dir(cp);




More information about the uClibc-cvs mailing list