Include module name in "already built-in" message
This commit is contained in:
parent
5138f710a1
commit
e523859a95
|
@ -869,7 +869,7 @@ doLoadModule(const char *module, const char *path, const char **subdirlist,
|
||||||
for (cim = compiled_in_modules; *cim; cim++)
|
for (cim = compiled_in_modules; *cim; cim++)
|
||||||
if (!strcmp (module, *cim))
|
if (!strcmp (module, *cim))
|
||||||
{
|
{
|
||||||
xf86MsgVerb(X_INFO, 0, "Module already built-in\n");
|
xf86MsgVerb(X_INFO, 0, "Module \"%s\" already built-in\n", module);
|
||||||
return (ModuleDescPtr) 1;
|
return (ModuleDescPtr) 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue