audio_parser: renamed parameter "error" to "error_r"

It's a double pointer.
This commit is contained in:
Max Kellermann
2009-10-21 22:22:23 +02:00
parent 8cb6854da4
commit 643650dba7
2 changed files with 12 additions and 10 deletions

View File

@@ -37,11 +37,12 @@ struct audio_format;
*
* @param dest the destination #audio_format struct
* @param src the input string
* @param error location to store the error occuring, or NULL to
* @param error_r location to store the error occuring, or NULL to
* ignore errors
* @return true on success
*/
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);
#endif