diff options
author | Max Kellermann <max@duempel.org> | 2008-08-26 08:44:12 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-26 08:44:12 +0200 |
commit | dff8c6450b8e3bd4dbc19fcce52faa8c5950b662 (patch) | |
tree | 04f98f71807789e86e627d9f7466c466326bd5b4 /src/main.c | |
parent | 4255bba0f7cbd4a1ac24859a65f8d974d1fb5a9b (diff) | |
download | mpd-dff8c6450b8e3bd4dbc19fcce52faa8c5950b662.tar.gz mpd-dff8c6450b8e3bd4dbc19fcce52faa8c5950b662.tar.xz mpd-dff8c6450b8e3bd4dbc19fcce52faa8c5950b662.zip |
renamed decode.c to decoder_thread.c
It should be obvious in which thread or context a function is being
executed at runtime. The code which was left in decode.c is for the
decoder thread itself; give the file a better name.
Diffstat (limited to '')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index 5a98b7e27..cfb38458d 100644 --- a/src/main.c +++ b/src/main.c @@ -25,7 +25,7 @@ #include "conf.h" #include "path.h" #include "playerData.h" -#include "decode.h" +#include "decoder_thread.h" #include "player.h" #include "stats.h" #include "sig_handlers.h" |