Index: obj_term.c =================================================================== --- obj_term.c (revision 10710) +++ obj_term.c (revision 10711) @@ -147,6 +147,7 @@ pcb_term_err_t pcb_term_init(htsp_t *terminals) { htsp_init(terminals, strhash, strkeyeq); + return PCB_TERM_ERR_SUCCESS; } pcb_term_err_t pcb_term_uninit(htsp_t *terminals) @@ -156,6 +157,7 @@ for (e = htsp_first(terminals); e; e = htsp_next(terminals, e)) pcb_term_remove_entry(terminals, e); htsp_uninit(terminals); + return PCB_TERM_ERR_SUCCESS; } /*** undoable term rename ***/