mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Return is not a function
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
6245b700a4
commit
0a9e5aa735
6 changed files with 7 additions and 7 deletions
4
info.c
4
info.c
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue