diff options
author | Max Kellermann <max@duempel.org> | 2009-01-01 18:12:14 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-01-01 18:12:14 +0100 |
commit | 22bb5a5856ff4c195a179610dfb3f09af3183467 (patch) | |
tree | ffc7fede9d6208559217a82b7283725bfd114d31 /src/main.c | |
parent | 9f5934d95bac6436ccc9a6dadc57e1e062505a79 (diff) | |
download | mpd-22bb5a5856ff4c195a179610dfb3f09af3183467.tar.gz mpd-22bb5a5856ff4c195a179610dfb3f09af3183467.tar.xz mpd-22bb5a5856ff4c195a179610dfb3f09af3183467.zip |
event_pipe: renamed functions from main_notify_* to event_pipe_*
Continuing the previous patch.
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c index 98aeb7890..f7ab7f1ee 100644 --- a/src/main.c +++ b/src/main.c @@ -253,7 +253,7 @@ int main(int argc, char *argv[]) decoder_plugin_init_all(); update_global_init(); - init_main_notify(); + event_pipe_init(); openDB(&options, argv[0]); @@ -308,7 +308,7 @@ int main(int argc, char *argv[]) g_debug("db_finish took %f seconds", ((float)(clock()-start))/CLOCKS_PER_SEC); - deinit_main_notify(); + event_pipe_deinit(); input_stream_global_finish(); finishNormalization(); |