summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
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 d7268ff..587254e 100644
--- a/common/eurephia_getsym.c
+++ b/common/eurephia_getsym.c
@@ -54,7 +54,7 @@ void *eGetSym(eurephiaCTX *ctx, void *dlh, const char *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);
+ eurephia_log(ctx, LOG_PANIC, 0, "Could not find needed '%s' function in driver", symnam);
ctx->fatal_error = 1;
}
return func;