From 2b579aeb4f6177de619eb02129f780675a5482ff Mon Sep 17 00:00:00 2001 From: Matthias Drochner Date: Mon, 27 May 2013 19:37:35 +0200 Subject: NULL pointer vs bool "false" confusion there are some places in the mpd-0.17.4 sources where a "false" is used instead of a NULL pointer. --- src/conf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/conf.c') diff --git a/src/conf.c b/src/conf.c index 167f2da92..a22f2ec91 100644 --- a/src/conf.c +++ b/src/conf.c @@ -317,7 +317,7 @@ config_read_block(FILE *fp, int *count, char *string, GError **error_r) g_set_error(error_r, config_quark(), 0, "line %i: Unknown tokens after '}'", *count); - return false; + return NULL; } return ret; -- cgit v1.2.3