From b9cd94d77093c4cc8354c5313840ad787f7e266d Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Sun, 25 Sep 2011 13:01:11 +0200 Subject: Fix coding style There should not be a ' ' between functions names and open brackets. Only after keywords (switch,if,for..) --- src/cmumble.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cmumble.c b/src/cmumble.c index 0410f4b..f3602fc 100644 --- a/src/cmumble.c +++ b/src/cmumble.c @@ -266,11 +266,11 @@ int main(int argc, char **argv) GError *error = NULL; GOptionContext *context; - context = g_option_context_new ("command line mumble client"); - g_option_context_add_main_entries (context, entries, "cmumble"); + context = g_option_context_new("command line mumble client"); + g_option_context_add_main_entries(context, entries, "cmumble"); g_option_context_add_group(context, gst_init_get_option_group()); - if (!g_option_context_parse (context, &argc, &argv, &error)) { + if (!g_option_context_parse(context, &argc, &argv, &error)) { g_print("option parsing failed: %s\n", error->message); exit(1); } -- cgit