diff options
author | David Sommerseth <dazo@users.sourceforge.net> | 2008-10-04 00:42:37 +0200 |
---|---|---|
committer | David Sommerseth <dazo@users.sourceforge.net> | 2008-10-04 00:42:37 +0200 |
commit | 298838fa11b9c4e88e132c4551b93b9a1750fac5 (patch) | |
tree | 976bff31b42bb6420d991447fee90dbed78c03c8 /eurephia_getsym.c | |
parent | 5a06808210ba0d52c06c34dee124f1a9fd95d92e (diff) | |
parent | db82a5db49a17e26f87a2779b62707983abd44f3 (diff) | |
download | eurephia-298838fa11b9c4e88e132c4551b93b9a1750fac5.tar.gz eurephia-298838fa11b9c4e88e132c4551b93b9a1750fac5.tar.xz eurephia-298838fa11b9c4e88e132c4551b93b9a1750fac5.zip |
Merge branch 'master' into cmake
Diffstat (limited to 'eurephia_getsym.c')
-rw-r--r-- | eurephia_getsym.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eurephia_getsym.c b/eurephia_getsym.c index fdf4cdc..e12221f 100644 --- a/eurephia_getsym.c +++ b/eurephia_getsym.c @@ -33,10 +33,10 @@ void *eGetSym(eurephiaCTX *ctx, void *dlh, const char *symnam) return NULL; } - DEBUG(ctx, 13, "Locating eDBlink function '%s'", symnam); + DEBUG(ctx, 30, "Locating eDBlink function '%s'", symnam); func = dlsym(dlh, symnam); if( func == NULL ) { - eurephia_log(ctx, LOG_ERROR, 1, "Could not find needed '%s' function in eDBlink driver", symnam); + eurephia_log(ctx, LOG_PANIC, 0, "Could not find needed '%s' function in eDBlink driver", symnam); ctx->fatal_error = 1; } return func; |