From 42ae0a5871ab2239e9d9a9739555c378d574e2b8 Mon Sep 17 00:00:00 2001 From: QC Date: Mon, 30 Mar 2015 20:13:47 +0200 Subject: [PATCH] Indent combi.c --- source/dialogs/combi.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/dialogs/combi.c b/source/dialogs/combi.c index b8dcb8f8..57f9151f 100644 --- a/source/dialogs/combi.c +++ b/source/dialogs/combi.c @@ -78,8 +78,8 @@ static char ** combi_mode_get_data ( unsigned int *length, Switcher *sw ) for ( unsigned int i = 0; i < pd->num_switchers; i++ ) { unsigned int length = 0; pd->switchers[i]->get_data ( &length, pd->switchers[i] ); - pd->starts[i] = pd->cmd_list_length; - pd->lengths[i] = length; + pd->starts[i] = pd->cmd_list_length; + pd->lengths[i] = length; pd->cmd_list_length += length; } // Fill the list. @@ -102,7 +102,7 @@ static void combi_mode_destroy ( Switcher *sw ) g_free ( pd->cmd_list ); g_free ( pd->starts ); g_free ( pd->lengths ); -g_free(pd->switchers); + g_free ( pd->switchers ); g_free ( pd ); sw->private_data = NULL; }