Commit 0a6d48c2 authored by Eric Wong's avatar Eric Wong

More sparse fixes now that we've re-enabled -Wmissing-prototypes

git-svn-id: https://svn.musicpd.org/mpd/trunk@5260 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 5220c2c9
...@@ -27,18 +27,18 @@ ...@@ -27,18 +27,18 @@
#ifdef HAVE_ICONV #ifdef HAVE_ICONV
#include <iconv.h> #include <iconv.h>
iconv_t char_conv_iconv; static iconv_t char_conv_iconv;
#endif #endif
char *char_conv_to = NULL; static char *char_conv_to;
char *char_conv_from = NULL; static char *char_conv_from;
mpd_sint8 char_conv_same = 0; static mpd_sint8 char_conv_same;
mpd_sint8 char_conv_use_iconv = 0; static mpd_sint8 char_conv_use_iconv;
/* 1 is to use latin1ToUtf8 /* 1 is to use latin1ToUtf8
0 is not to use latin1/utf8 converter 0 is not to use latin1/utf8 converter
-1 is to use utf8ToLatin1*/ -1 is to use utf8ToLatin1*/
mpd_sint8 char_conv_latin1ToUtf8 = 0; static mpd_sint8 char_conv_latin1ToUtf8 = 0;
#define BUFFER_SIZE 1024 #define BUFFER_SIZE 1024
......
...@@ -923,7 +923,7 @@ int stopPlaylist(int fd) ...@@ -923,7 +923,7 @@ int stopPlaylist(int fd)
return 0; return 0;
} }
int playPlaylistOrderNumber(int fd, int orderNum) static int playPlaylistOrderNumber(int fd, int orderNum)
{ {
if (playerStop(fd) < 0) if (playerStop(fd) < 0)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment