diff options
author | Max Kellermann <max@duempel.org> | 2008-10-26 20:34:33 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-10-26 20:34:33 +0100 |
commit | 97a9c7a8e094f830e70fdb479425c96e182f8b5e (patch) | |
tree | 1edf28e67a2de1b3e1cdb589164a3addc9f8f0f8 | |
parent | 23552f89cc6fbd28ffba0c2c485a24ab6b95eaa3 (diff) | |
download | mpd-97a9c7a8e094f830e70fdb479425c96e182f8b5e.tar.gz mpd-97a9c7a8e094f830e70fdb479425c96e182f8b5e.tar.xz mpd-97a9c7a8e094f830e70fdb479425c96e182f8b5e.zip |
input_file: removed global constructor
The global constructor is empty, and can be removed.
-rw-r--r-- | src/input_file.c | 4 | ||||
-rw-r--r-- | src/input_file.h | 2 | ||||
-rw-r--r-- | src/input_stream.c | 1 |
3 files changed, 0 insertions, 7 deletions
diff --git a/src/input_file.c b/src/input_file.c index db09b0570..114fac49b 100644 --- a/src/input_file.c +++ b/src/input_file.c @@ -21,10 +21,6 @@ #include "log.h" #include "os_compat.h" -void inputStream_initFile(void) -{ -} - static int inputStream_fileSeek(struct input_stream *is, long offset, int whence); diff --git a/src/input_file.h b/src/input_file.h index e3b97db3d..177df477a 100644 --- a/src/input_file.h +++ b/src/input_file.h @@ -21,8 +21,6 @@ #include "input_stream.h" -void inputStream_initFile(void); - int inputStream_fileOpen(struct input_stream *inStream, char *filename); #endif diff --git a/src/input_stream.c b/src/input_stream.c index 607cfc358..01b22028c 100644 --- a/src/input_stream.c +++ b/src/input_stream.c @@ -29,7 +29,6 @@ void initInputStream(void) { - inputStream_initFile(); #ifdef HAVE_CURL input_curl_global_init(); #endif |