Match return value with function prototypes.

This commit is contained in:
Ole Loots 2013-04-19 21:20:07 +02:00
parent 39231ca3f6
commit 076361e1e1
2 changed files with 3 additions and 0 deletions

View File

@ -757,6 +757,7 @@ GUIWIN *gemtk_wm_link(GUIWIN *win)
win->prev = tmp;
win->next = NULL;
}
return(win);
}
/**

View File

@ -89,6 +89,8 @@ char gemtk_obj_set_str_safe(OBJECT * tree, short idx, char *txt)
snprintf(spare, maxlen, "%s", txt);
set_string(tree, idx, spare);
return(0);
}
OBJECT *gemtk_obj_get_tree(int idx)