diff options
author | unknown <serg@serg.mylan> | 2004-09-04 20:17:09 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-09-04 20:17:09 +0200 |
commit | df8a43b8b2f51901fc35cd5dbd047e09941eeae3 (patch) | |
tree | 6c5ba5b242257855157cdf52a44d6a7e88c3884a /sql/sql_udf.cc | |
parent | c0c7e8f56454f6624b0f32a556f71fc12b7f210b (diff) | |
download | mariadb-git-df8a43b8b2f51901fc35cd5dbd047e09941eeae3.tar.gz |
sql_print_error cleanup
Diffstat (limited to 'sql/sql_udf.cc')
-rw-r--r-- | sql/sql_udf.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sql/sql_udf.cc b/sql/sql_udf.cc index 561f79f9de1..0bb8ac8a28b 100644 --- a/sql/sql_udf.cc +++ b/sql/sql_udf.cc @@ -184,8 +184,7 @@ void udf_init() if (!(dl = dlopen(tmp->dl, RTLD_NOW))) { /* Print warning to log */ - sql_print_error(ER(ER_CANT_OPEN_LIBRARY), - tmp->dl,errno,dlerror()); + sql_print_error(ER(ER_CANT_OPEN_LIBRARY), tmp->dl,errno,dlerror()); /* Keep the udf in the hash so that we can remove it later */ continue; } |