diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2011-12-14 20:49:40 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2011-12-14 20:53:25 -0800 |
commit | 0a9e5aa7353476d70c4eb9866aeda979118d04e5 (patch) | |
tree | c5ce21519f5719ab25facb4727bbdf90f0dca0d9 /info.c | |
parent | 6245b700a4a98cc2dba8c5b8c3f4958491605755 (diff) | |
download | subsurface-0a9e5aa7353476d70c4eb9866aeda979118d04e5.tar.gz |
Return is not a function
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'info.c')
-rw-r--r-- | info.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -38,8 +38,8 @@ static char *get_text(GtkTextView *view) * NOTW: NULL and "" need to be treated as "unchanged" */ static int text_changed(const char *old, const char *new) { - return ((old && strcmp(old,new)) || - (!old && strcmp("",new))); + return (old && strcmp(old,new)) || + (!old && strcmp("",new)); } static char *get_combo_box_entry_text(GtkComboBoxEntry *combo_box, char **textp) |