Navigation Menu

Skip to content

Commit

Permalink
va_copy -> G_VA_COPY
Browse files Browse the repository at this point in the history
  • Loading branch information
monich committed Feb 19, 2014
1 parent 9d5b9b7 commit e533e43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mms-lib/src/mms_error.c
Expand Up @@ -25,7 +25,7 @@ mms_error_valist(
{
if (error) {
va_list args2;
va_copy(args2, args);
G_VA_COPY(args2, args);
g_propagate_error(error,
g_error_new_valist(MMS_LIB_ERROR, code, format, args2));
va_end(args2);
Expand Down

0 comments on commit e533e43

Please sign in to comment.