Fix argument name of MISSING_ATTRIBUTE macro ('ctx' => 'context').

The argument was called 'ctx' but the macro was using 'context'.
This wasn't causing the build to fail because the variable
'context' was already defined in all the scopes where this macro
was used.
This commit is contained in:
Laszlo Pandy 2011-02-17 18:01:31 +01:00
parent 5debbc28a9
commit f478da144f

View File

@ -293,7 +293,7 @@ locate_gir (GIrParser *parser,
return NULL;
}
#define MISSING_ATTRIBUTE(ctx,error,element,attribute) \
#define MISSING_ATTRIBUTE(context,error,element,attribute) \
do { \
int line_number, char_number; \
g_markup_parse_context_get_position (context, &line_number, &char_number); \