summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorDavid Sommerseth <dazo@users.sourceforge.net>2009-12-14 12:49:52 +0100
committerDavid Sommerseth <dazo@users.sourceforge.net>2009-12-14 12:50:38 +0100
commit6c78790a638c7ebaccd32fc749e48ec77b8a0583 (patch)
treefbcf4a7df324a55e98f17fae7c6352dea3e09663 /common
parent5420bfc7341834db20bce6211bf74f57b779263d (diff)
downloadeurephia-6c78790a638c7ebaccd32fc749e48ec77b8a0583.tar.gz
eurephia-6c78790a638c7ebaccd32fc749e48ec77b8a0583.tar.xz
eurephia-6c78790a638c7ebaccd32fc749e48ec77b8a0583.zip
Cosmetic debug logging fix
Diffstat (limited to 'common')
-rw-r--r--common/eurephia_getsym.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/eurephia_getsym.c b/common/eurephia_getsym.c
index cf9f244..3b2b4f8 100644
--- a/common/eurephia_getsym.c
+++ b/common/eurephia_getsym.c
@@ -51,7 +51,7 @@ void *eGetSym(eurephiaCTX *ctx, void *dlh, const char *symnam)
return NULL;
}
- DEBUG(ctx, 30, "Locating eDBlink function '%s'", symnam);
+ DEBUG(ctx, 30, "Locating driver function '%s'", symnam);
func = dlsym(dlh, symnam);
if( func == NULL ) {
eurephia_log(ctx, LOG_PANIC, 0, "Could not find needed '%s' function in eDBlink driver", symnam);