From 643650dba75becfe572c1b334d1276a1b3f66d41 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 21 Oct 2009 22:22:23 +0200 Subject: audio_parser: renamed parameter "error" to "error_r" It's a double pointer. --- src/audio_parser.c | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'src/audio_parser.c') diff --git a/src/audio_parser.c b/src/audio_parser.c index d29f5f449..2f38e23f6 100644 --- a/src/audio_parser.c +++ b/src/audio_parser.c @@ -37,7 +37,8 @@ audio_parser_quark(void) } bool -audio_format_parse(struct audio_format *dest, const char *src, GError **error) +audio_format_parse(struct audio_format *dest, const char *src, + GError **error_r) { char *endptr; unsigned long value; @@ -50,15 +51,15 @@ audio_format_parse(struct audio_format *dest, const char *src, GError **error) value = strtoul(src, &endptr, 10); if (endptr == src) { - g_set_error(error, audio_parser_quark(), 0, + g_set_error(error_r, audio_parser_quark(), 0, "Sample rate missing"); return false; } else if (*endptr != ':') { - g_set_error(error, audio_parser_quark(), 0, + g_set_error(error_r, audio_parser_quark(), 0, "Sample format missing"); return false; } else if (!audio_valid_sample_rate(value)) { - g_set_error(error, audio_parser_quark(), 0, + g_set_error(error_r, audio_parser_quark(), 0, "Invalid sample rate: %lu", value); return false; } @@ -70,15 +71,15 @@ audio_format_parse(struct audio_format *dest, const char *src, GError **error) src = endptr + 1; value = strtoul(src, &endptr, 10); if (endptr == src) { - g_set_error(error, audio_parser_quark(), 0, + g_set_error(error_r, audio_parser_quark(), 0, "Sample format missing"); return false; } else if (*endptr != ':') { - g_set_error(error, audio_parser_quark(), 0, + g_set_error(error_r, audio_parser_quark(), 0, "Channel count missing"); return false; } else if (!audio_valid_sample_format(value)) { - g_set_error(error, audio_parser_quark(), 0, + g_set_error(error_r, audio_parser_quark(), 0, "Invalid sample format: %lu", value); return false; } @@ -90,7 +91,7 @@ audio_format_parse(struct audio_format *dest, const char *src, GError **error) src = endptr + 1; value = strtoul(src, &endptr, 10); if (*endptr != 0 || !audio_valid_channel_count(value)) { - g_set_error(error, audio_parser_quark(), 0, + g_set_error(error_r, audio_parser_quark(), 0, "Invalid channel count: %s", src); return false; } -- cgit v1.2.3