aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWouter Van Rooy <wouter.van.rooy@vasco.com>2013-03-06 13:24:49 +0100
committerWouter Van Rooy <wouter.van.rooy@vasco.com>2013-03-06 13:24:49 +0100
commit520061e312d18fae76e3e42209aa1274867c211a (patch)
tree61302da5087d6cf859b1842af5df6467f0bab65c
parent65a018a190ed68181de73defe0841c0caa50c8dc (diff)
Fixed warning for comparing int and pointer.
Window_width and _height are int. So should be compared to 0 instead of NULL
-rw-r--r--svte.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/svte.c b/svte.c
index 263a59d..22cdbcc 100644
--- a/svte.c
+++ b/svte.c
@@ -572,7 +572,7 @@ static void parse_config_file(gchar *config_file) {
config->font = DEFAULT_FONT;
}
- if (NULL == config->window_width || NULL == config->window_height) {
+ if (0 == config->window_width || 0 == config->window_height) {
config->window_width = DEFAULT_WINDOW_WIDTH;
config->window_height = DEFAULT_WINDOW_HEIGHT;
}