diff options
author | Dren Kajmakchi <dk18184@gmail.com> | 2017-10-15 10:23:43 +0200 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2017-10-16 05:10:32 -0400 |
commit | 1452e803fb5bde458fc3e6d2f1e130fd68c4bac9 (patch) | |
tree | 3c2a9d02b425af562a506853eda1053f6c17debc /src/common | |
parent | 6f8b8c3d3ca272f141f3fc36961802607d0c2289 (diff) |
A tiny code style change
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/hexchat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/hexchat.c b/src/common/hexchat.c index a878f009..e9a9a7fc 100644 --- a/src/common/hexchat.c +++ b/src/common/hexchat.c @@ -577,7 +577,7 @@ exec_notify_kill (session * sess) waitpid (re->childpid, NULL, WNOHANG); fe_input_remove (re->iotag); close (re->myfd); - g_free(re->linebuf); + g_free (re->linebuf); g_free (re); } #endif @@ -1102,7 +1102,7 @@ main (int argc, char *argv[]) #endif #ifdef USE_LIBPROXY - libproxy_factory = px_proxy_factory_new(); + libproxy_factory = px_proxy_factory_new (); #endif #ifdef WIN32 @@ -1148,7 +1148,7 @@ main (int argc, char *argv[]) #endif #ifdef USE_LIBPROXY - px_proxy_factory_free(libproxy_factory); + px_proxy_factory_free (libproxy_factory); #endif #ifdef WIN32 |