Commit 2a4a75d9 authored by Avuton Olrich's avatar Avuton Olrich

[CLEANUP] Make static what makes sense.

git-svn-id: https://svn.musicpd.org/mpd/trunk@4337 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 40666294
......@@ -32,13 +32,13 @@
#define BUFFER_LENGTH MAXPATHLEN+1024
int myfprintf_stdLogMode = 0;
FILE * myfprintf_out;
FILE * myfprintf_err;
char * myfprintf_outFilename;
char * myfprintf_errFilename;
static int myfprintf_stdLogMode = 0;
static FILE * myfprintf_out;
static FILE * myfprintf_err;
static char * myfprintf_outFilename;
static char * myfprintf_errFilename;
void blockingWrite(int fd, char * string, int len) {
static void blockingWrite(int fd, char * string, int len) {
int ret;
while(len) {
......
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