summaryrefslogtreecommitdiff
path: root/src/fe-common/core
diff options
context:
space:
mode:
authorJari Matilainen <jari.matilainen@gmail.com>2016-06-21 22:05:21 +0200
committerJari Matilainen <jari.matilainen@gmail.com>2016-06-21 22:05:21 +0200
commita4223a3b2e5f5689c61633542f05e70c28226717 (patch)
tree112cb7eca17ca4de87eb8d70163e6e168e576969 /src/fe-common/core
parent2bb913f0c128dbb37737b7c2d7af99ed70801993 (diff)
downloadirssi-a4223a3b2e5f5689c61633542f05e70c28226717.zip
use TRUE/FALSE in if statements for gboolean
Diffstat (limited to 'src/fe-common/core')
-rw-r--r--src/fe-common/core/fe-channels.c2
-rw-r--r--src/fe-common/core/fe-server.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-common/core/fe-channels.c b/src/fe-common/core/fe-channels.c
index 2802e933..532b1bf8 100644
--- a/src/fe-common/core/fe-channels.c
+++ b/src/fe-common/core/fe-channels.c
@@ -275,7 +275,7 @@ static void cmd_channel_add_modify(const char *data, gboolean add)
rec = channel_setup_find(channel, chatnet);
if (rec == NULL) {
- if (!add) {
+ if (add == FALSE) {
cmd_params_free(free_arg);
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
TXT_CHANSETUP_NOT_FOUND, channel, chatnet);
diff --git a/src/fe-common/core/fe-server.c b/src/fe-common/core/fe-server.c
index d6f2841b..468cb707 100644
--- a/src/fe-common/core/fe-server.c
+++ b/src/fe-common/core/fe-server.c
@@ -124,7 +124,7 @@ static void cmd_server_add_modify(const char *data, gboolean add)
rec = server_setup_find(addr, port, chatnet);
if (rec == NULL) {
- if (!add) {
+ if (add == FALSE) {
cmd_params_free(free_arg);
printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
TXT_SETUPSERVER_NOT_FOUND, addr, port);