mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-13 15:56:23 +01:00
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:
parent
5debbc28a9
commit
f478da144f
@ -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); \
|
||||
|
Loading…
Reference in New Issue
Block a user