mirror of
https://github.com/brl/mutter.git
synced 2025-06-13 16:59:30 +00:00
Added curly brackets in two places to keep -pedantic happy.
2008-05-04 Thomas Thurman <tthurman@gnome.org> Added curly brackets in two places to keep -pedantic happy. * src/core/window-props.c (meta_display_init_window_prop_hooks) * src/core/group-props.c (meta_display_init_group_prop_hooks) svn path=/trunk/; revision=3704
This commit is contained in:

committed by
Thomas James Alexander Thurman

parent
3673472cd7
commit
f8ff76efdd
@ -197,7 +197,9 @@ meta_display_init_group_prop_hooks (MetaDisplay *display)
|
||||
++i;
|
||||
|
||||
if (i != N_HOOKS)
|
||||
g_error ("Initialized %d group hooks should have been %d\n", i, N_HOOKS);
|
||||
{
|
||||
g_error ("Initialized %d group hooks should have been %d\n", i, N_HOOKS);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
|
@ -1586,7 +1586,9 @@ meta_display_init_window_prop_hooks (MetaDisplay *display)
|
||||
++i;
|
||||
|
||||
if (i != N_HOOKS)
|
||||
g_error ("Initialized %d hooks should have been %d\n", i, N_HOOKS);
|
||||
{
|
||||
g_error ("Initialized %d hooks should have been %d\n", i, N_HOOKS);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
|
Reference in New Issue
Block a user