Make message that gets printed when loader encounters a .o with no symbols

less conspicuous.
This commit is contained in:
Egbert Eich 2005-03-16 11:54:54 +00:00
parent 816606b9ea
commit 1011762254

View File

@ -1146,7 +1146,9 @@ ARCHIVELoadModule(loaderPtr modrec, int arfd, LOOKUP ** ppLookup)
lseek(arfd, 1, SEEK_CUR); /* make it an even boundary */
if (tmp->private == (void *)-1L) {
ErrorF("Skipping \"%s\": No symbols found\n", tmp->name);
xf86Msg(X_INFO, "Skipping \"%s\": "
"object file contains no symbols\n",
tmp->name);
continue;
} else
ret = tmp->private;