diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2019-02-23 18:31:02 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-04-12 18:19:07 +0300 |
commit | 9ed5cf16a4a0f982f0fae170740ee2886f634a14 (patch) | |
tree | 4b2852b5ea4f915346fe7afcbbdd50e9d679f60d /smtk-import | |
parent | 73a230b6e652f4bba1bf08cb21fec112a968ff0d (diff) | |
download | subsurface-9ed5cf16a4a0f982f0fae170740ee2886f634a14.tar.gz |
Coding style: remove Java-style function definition
Remove a few cases of
void fun() {
...
}
While touching these functions, fix a few other whitespace
coding style violations.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'smtk-import')
-rw-r--r-- | smtk-import/smartrak.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/smtk-import/smartrak.c b/smtk-import/smartrak.c index 67bf1fd6e..31c7e4dc3 100644 --- a/smtk-import/smartrak.c +++ b/smtk-import/smartrak.c @@ -645,7 +645,8 @@ static struct types_list *smtk_index_list(MdbHandle *mdb, char *table_name, char * Buddy table format: * | Idx | Text (nickname) | Name | Firstname | Middlename | Title | Picture | Phone | ... */ -static void smtk_build_buddies(MdbHandle *mdb, char *array[]) { +static void smtk_build_buddies(MdbHandle *mdb, char *array[]) +{ MdbTableDef *table; MdbColumn *col[MDB_MAX_COLS]; char *bound_values[MDB_MAX_COLS], *fullname = NULL, *str = NULL; |