diff options
author | monty@mysql.com/narttu.mysql.fi <> | 2007-01-29 16:13:18 +0200 |
---|---|---|
committer | monty@mysql.com/narttu.mysql.fi <> | 2007-01-29 16:13:18 +0200 |
commit | 1f6d91c5a631927192336cb4e94c3fa8e8184d22 (patch) | |
tree | 2dd0026d401cb0c6b6a12e1c9f375f844e2e390f /plugin/daemon_example | |
parent | bb464613ce81b5ca0d78ff8fdb0b8cb31d792817 (diff) | |
download | mariadb-git-1f6d91c5a631927192336cb4e94c3fa8e8184d22.tar.gz |
after merge fixes
Removed
Diffstat (limited to 'plugin/daemon_example')
-rw-r--r-- | plugin/daemon_example/daemon_example.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/daemon_example/daemon_example.c b/plugin/daemon_example/daemon_example.c index 26d54157cbd..ed9fac7574f 100644 --- a/plugin/daemon_example/daemon_example.c +++ b/plugin/daemon_example/daemon_example.c @@ -40,7 +40,7 @@ 1 failure (cannot happen) */ -static int daemon_example_plugin_init(void *p) +static int daemon_example_plugin_init(void *p __attribute__ ((unused))) { return(0); } @@ -59,7 +59,7 @@ static int daemon_example_plugin_init(void *p) */ -static int daemon_example_plugin_deinit(void *p) +static int daemon_example_plugin_deinit(void *p __attribute__ ((unused))) { return(0); } |