aboutsummaryrefslogtreecommitdiffstats
path: root/src/inputStream_http.c
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2006-07-17 00:15:34 +0000
committerEric Wong <normalperson@yhbt.net>2006-07-17 00:15:34 +0000
commita234780aab8b2d693502e03165f658f96c956969 (patch)
treef8c9a6d72a4478f6c8a769e797483dfb0ce88f2e /src/inputStream_http.c
parent0c24fc0cb33dd6482670a54ed80c7dc67ebc929c (diff)
downloadmpd-a234780aab8b2d693502e03165f658f96c956969.tar.gz
mpd-a234780aab8b2d693502e03165f658f96c956969.tar.xz
mpd-a234780aab8b2d693502e03165f658f96c956969.zip
sparse: ANSI-fy function declarations
These are just warnings from sparse, but it makes the output easier to read. I ran this through a quick perl script, but of course verified the output by looking at the diff and making sure the thing still compiles. here's the quick perl script I wrote to generate this patch: ----------- 8< ----------- use Tie::File; defined(my $pid = open my $fh, '-|') or die $!; if (!$pid) { open STDERR, '>&STDOUT' or die $!; exec 'sparse', @ARGV or die $!; } my $na = 'warning: non-ANSI function declaration of function'; while (<$fh>) { print STDERR $_; if (/^(.+?\.[ch]):(\d+):(\d+): $na '(\w+)'/o) { my ($f, $l, $pos, $func) = ($1, $2, $3, $4); $l--; tie my @x, 'Tie::File', $f or die "$!: $f"; print '-', $x[$l], "\n"; $x[$l] =~ s/\b($func\s*)\(\s*\)/$1(void)/; print '+', $x[$l], "\n"; untie @x; } } git-svn-id: https://svn.musicpd.org/mpd/trunk@4378 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r--src/inputStream_http.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inputStream_http.c b/src/inputStream_http.c
index 35aa9ea0c..3eefdf516 100644
--- a/src/inputStream_http.c
+++ b/src/inputStream_http.c
@@ -70,7 +70,7 @@ typedef struct _InputStreemHTTPData {
char * httpAuth;
} InputStreamHTTPData;
-void inputStream_initHttp() {
+void inputStream_initHttp(void) {
ConfigParam * param = getConfigParam(CONF_HTTP_PROXY_HOST);
char * test;
@@ -238,7 +238,7 @@ static char * authString(char * header, char * user, char * password) {
#define proxyAuthString(x, y) authString(PROXY_AUTH_HEADER, x, y)
#define httpAuthString(x, y) authString(HTTP_AUTH_HEADER, x, y)
-static InputStreamHTTPData * newInputStreamHTTPData() {
+static InputStreamHTTPData * newInputStreamHTTPData(void) {
InputStreamHTTPData * ret = malloc(sizeof(InputStreamHTTPData));
if(proxyHost) {