diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-02-21 09:16:25 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-02-21 09:16:25 +0100 |
commit | c1a5a76d087d716e5f49afeb88352d3a126614af (patch) | |
tree | 85cb4c5ef5dfbd1465b5ca0f4340b0ddfb387b5c /src/plugins/guile/weechat-guile.c | |
parent | 8f11de68631bc707e818da8eb15845efbcb162f4 (diff) | |
download | weechat-c1a5a76d087d716e5f49afeb88352d3a126614af.zip |
scripts: reformat some code to make it more readable
Diffstat (limited to 'src/plugins/guile/weechat-guile.c')
-rw-r--r-- | src/plugins/guile/weechat-guile.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/plugins/guile/weechat-guile.c b/src/plugins/guile/weechat-guile.c index 77af713de..fde52babd 100644 --- a/src/plugins/guile/weechat-guile.c +++ b/src/plugins/guile/weechat-guile.c @@ -222,11 +222,8 @@ weechat_guile_alist_to_hashtable (SCM alist, int size, const char *type_keys, SCM pair; char *str, *str2; - hashtable = weechat_hashtable_new (size, - type_keys, - type_values, - NULL, - NULL); + hashtable = weechat_hashtable_new (size, type_keys, type_values, + NULL, NULL); if (!hashtable) return NULL; |