summaryrefslogtreecommitdiff
path: root/sql/sql_udf.cc
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2004-09-04 20:17:09 +0200
committerunknown <serg@serg.mylan>2004-09-04 20:17:09 +0200
commitdf8a43b8b2f51901fc35cd5dbd047e09941eeae3 (patch)
tree6c5ba5b242257855157cdf52a44d6a7e88c3884a /sql/sql_udf.cc
parentc0c7e8f56454f6624b0f32a556f71fc12b7f210b (diff)
downloadmariadb-git-df8a43b8b2f51901fc35cd5dbd047e09941eeae3.tar.gz
sql_print_error cleanup
Diffstat (limited to 'sql/sql_udf.cc')
-rw-r--r--sql/sql_udf.cc3
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;
}