From e523859a952d49b20f3d10152cc0ef695d2c12a1 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Wed, 20 Jun 2007 17:54:38 -0700 Subject: [PATCH] Include module name in "already built-in" message --- hw/xfree86/loader/loadmod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xfree86/loader/loadmod.c b/hw/xfree86/loader/loadmod.c index 6a1c65e4a..ea559aaa5 100644 --- a/hw/xfree86/loader/loadmod.c +++ b/hw/xfree86/loader/loadmod.c @@ -869,7 +869,7 @@ doLoadModule(const char *module, const char *path, const char **subdirlist, for (cim = compiled_in_modules; *cim; 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; }