mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05: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:
parent
3673472cd7
commit
f8ff76efdd
@ -1,3 +1,10 @@
|
|||||||
|
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)
|
||||||
|
|
||||||
2008-05-03 Matt Krai <mkraai@beckman.com>
|
2008-05-03 Matt Krai <mkraai@beckman.com>
|
||||||
|
|
||||||
* src/core/delete.c (io_from_ping_dialog): fix type of "len" variable
|
* src/core/delete.c (io_from_ping_dialog): fix type of "len" variable
|
||||||
|
@ -197,7 +197,9 @@ meta_display_init_group_prop_hooks (MetaDisplay *display)
|
|||||||
++i;
|
++i;
|
||||||
|
|
||||||
if (i != N_HOOKS)
|
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
|
void
|
||||||
|
@ -1586,7 +1586,9 @@ meta_display_init_window_prop_hooks (MetaDisplay *display)
|
|||||||
++i;
|
++i;
|
||||||
|
|
||||||
if (i != N_HOOKS)
|
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
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user