boxes-tests: Make pointer declaration match code style

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2236>
This commit is contained in:
Björn Daase 2022-01-14 20:04:20 +01:00
parent cbc6965b80
commit 75e220a1c1

View File

@ -52,7 +52,7 @@ get_random_rect (MetaRectangle *rect)
static MetaRectangle* static MetaRectangle*
new_meta_rect (int x, int y, int width, int height) new_meta_rect (int x, int y, int width, int height)
{ {
MetaRectangle* temporary; MetaRectangle *temporary;
temporary = g_new (MetaRectangle, 1); temporary = g_new (MetaRectangle, 1);
temporary->x = x; temporary->x = x;
temporary->y = y; temporary->y = y;
@ -65,7 +65,7 @@ new_meta_rect (int x, int y, int width, int height)
static MetaStrut* static MetaStrut*
new_meta_strut (int x, int y, int width, int height, int side) new_meta_strut (int x, int y, int width, int height, int side)
{ {
MetaStrut* temporary; MetaStrut *temporary;
temporary = g_new (MetaStrut, 1); temporary = g_new (MetaStrut, 1);
temporary->rect = meta_rect(x, y, width, height); temporary->rect = meta_rect(x, y, width, height);
temporary->side = side; temporary->side = side;
@ -76,7 +76,7 @@ new_meta_strut (int x, int y, int width, int height, int side)
static MetaEdge* static MetaEdge*
new_screen_edge (int x, int y, int width, int height, int side_type) new_screen_edge (int x, int y, int width, int height, int side_type)
{ {
MetaEdge* temporary; MetaEdge *temporary;
temporary = g_new (MetaEdge, 1); temporary = g_new (MetaEdge, 1);
temporary->rect.x = x; temporary->rect.x = x;
temporary->rect.y = y; temporary->rect.y = y;
@ -91,7 +91,7 @@ new_screen_edge (int x, int y, int width, int height, int side_type)
static MetaEdge* static MetaEdge*
new_monitor_edge (int x, int y, int width, int height, int side_type) new_monitor_edge (int x, int y, int width, int height, int side_type)
{ {
MetaEdge* temporary; MetaEdge *temporary;
temporary = g_new (MetaEdge, 1); temporary = g_new (MetaEdge, 1);
temporary->rect.x = x; temporary->rect.x = x;
temporary->rect.y = y; temporary->rect.y = y;
@ -364,8 +364,8 @@ test_merge_regions (void)
* number of those merges that were of the form A is adjacent to B * number of those merges that were of the form A is adjacent to B
*/ */
GList* region; GList *region;
GList* compare; GList *compare;
int num_contains, num_merged, num_part_contains, num_adjacent; int num_contains, num_merged, num_part_contains, num_adjacent;
num_contains = num_merged = num_part_contains = num_adjacent = 0; num_contains = num_merged = num_part_contains = num_adjacent = 0;
@ -570,8 +570,8 @@ verify_lists_are_equal (GList *code, GList *answer)
static void static void
test_regions_okay (void) test_regions_okay (void)
{ {
GList* region; GList *region;
GList* tmp; GList *tmp;
/*************************************************************/ /*************************************************************/
/* Make sure test region 0 has the right spanning rectangles */ /* Make sure test region 0 has the right spanning rectangles */
@ -656,7 +656,7 @@ test_regions_okay (void)
static void static void
test_region_fitting (void) test_region_fitting (void)
{ {
GList* region; GList *region;
MetaRectangle rect; MetaRectangle rect;
/* See test_basic_fitting() for how/why these automated random tests work */ /* See test_basic_fitting() for how/why these automated random tests work */
@ -698,7 +698,7 @@ test_region_fitting (void)
static void static void
test_clamping_to_region (void) test_clamping_to_region (void)
{ {
GList* region; GList *region;
MetaRectangle rect; MetaRectangle rect;
MetaRectangle min_size; MetaRectangle min_size;
FixedDirections fixed_directions; FixedDirections fixed_directions;
@ -819,7 +819,7 @@ gboolean time_to_print = FALSE;
static void static void
test_clipping_to_region (void) test_clipping_to_region (void)
{ {
GList* region; GList *region;
MetaRectangle rect, temp; MetaRectangle rect, temp;
FixedDirections fixed_directions = 0; FixedDirections fixed_directions = 0;
int i; int i;
@ -879,7 +879,7 @@ test_clipping_to_region (void)
static void static void
test_shoving_into_region (void) test_shoving_into_region (void)
{ {
GList* region; GList *region;
MetaRectangle rect, temp; MetaRectangle rect, temp;
FixedDirections fixed_directions = 0; FixedDirections fixed_directions = 0;
int i; int i;
@ -994,8 +994,8 @@ verify_edge_lists_are_equal (GList *code, GList *answer)
static void static void
test_find_onscreen_edges (void) test_find_onscreen_edges (void)
{ {
GList* edges; GList *edges;
GList* tmp; GList *tmp;
int left = META_DIRECTION_LEFT; int left = META_DIRECTION_LEFT;
int right = META_DIRECTION_RIGHT; int right = META_DIRECTION_RIGHT;
@ -1125,8 +1125,8 @@ test_find_onscreen_edges (void)
static void static void
test_find_nonintersected_monitor_edges (void) test_find_nonintersected_monitor_edges (void)
{ {
GList* edges; GList *edges;
GList* tmp; GList *tmp;
int left = META_DIRECTION_LEFT; int left = META_DIRECTION_LEFT;
int right = META_DIRECTION_RIGHT; int right = META_DIRECTION_RIGHT;