diff options
author | Syam Sidhardhan <syamsidhardh@gmail.com> | 2011-06-27 03:26:04 +0530 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2012-04-05 08:07:07 -0700 |
commit | 640ba9b3e1d35d69413733ae6b8875ccc37393ac (patch) | |
tree | 166d5f8f2fde85691c5ae709ab0ff536e759ffa5 /gdbus/object.c | |
parent | 09dc17597fd7597cdcb290578dfb42e28fdcc4f4 (diff) | |
download | connman-640ba9b3e1d35d69413733ae6b8875ccc37393ac.tar.gz connman-640ba9b3e1d35d69413733ae6b8875ccc37393ac.tar.bz2 connman-640ba9b3e1d35d69413733ae6b8875ccc37393ac.zip |
gdbus: Fix white space coding style issue
- corrected the space before '{'
Diffstat (limited to 'gdbus/object.c')
-rw-r--r-- | gdbus/object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdbus/object.c b/gdbus/object.c index d17a1016..8bc12f53 100644 --- a/gdbus/object.c +++ b/gdbus/object.c @@ -76,7 +76,7 @@ static void print_arguments(GString *gstr, const char *sig, /* Gather enough data to have a single complete type */ for (len = 0; len < (sizeof(type) - 1) && sig[i]; len++, i++) { - switch (sig[i]){ + switch (sig[i]) { case '(': struct_level++; break; |