diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-09-25 13:01:11 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2011-09-25 13:03:12 +0200 |
commit | b9cd94d77093c4cc8354c5313840ad787f7e266d (patch) | |
tree | 8cbb5b0cf32ec992c1189f6b77d1f00a8e1831d6 /src | |
parent | ecf473768f829266a293c74232e3b9fbdce93bf1 (diff) | |
download | cmumble-b9cd94d77093c4cc8354c5313840ad787f7e266d.tar.gz cmumble-b9cd94d77093c4cc8354c5313840ad787f7e266d.tar.bz2 cmumble-b9cd94d77093c4cc8354c5313840ad787f7e266d.zip |
Fix coding style
There should not be a ' ' between
functions names and open brackets.
Only after keywords (switch,if,for..)
Diffstat (limited to 'src')
-rw-r--r-- | src/cmumble.c | 6 |
1 files 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); } |