Make message that gets printed when loader encounters a .o with no symbols
less conspicuous.
This commit is contained in:
parent
816606b9ea
commit
1011762254
|
@ -1146,7 +1146,9 @@ ARCHIVELoadModule(loaderPtr modrec, int arfd, LOOKUP ** ppLookup)
|
||||||
lseek(arfd, 1, SEEK_CUR); /* make it an even boundary */
|
lseek(arfd, 1, SEEK_CUR); /* make it an even boundary */
|
||||||
|
|
||||||
if (tmp->private == (void *)-1L) {
|
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;
|
continue;
|
||||||
} else
|
} else
|
||||||
ret = tmp->private;
|
ret = tmp->private;
|
||||||
|
|
Loading…
Reference in New Issue