From af66c658642635a3c951bb0ee130e40e7f084fd9 Mon Sep 17 00:00:00 2001 From: graham.gower Date: Wed, 04 Nov 2009 23:52:10 -0500 Subject: These functions cannot fail, so return void. git-svn-id: http://opkg.googlecode.com/svn/trunk@260 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- (limited to 'libopkg/conffile_list.h') diff --git a/libopkg/conffile_list.h b/libopkg/conffile_list.h index b044d63..942f68e 100644 --- a/libopkg/conffile_list.h +++ b/libopkg/conffile_list.h @@ -25,12 +25,12 @@ typedef nv_pair_list_t conffile_list_t; #include "conffile.h" -int conffile_list_init(conffile_list_t *list); +void conffile_list_init(conffile_list_t *list); void conffile_list_deinit(conffile_list_t *list); conffile_t *conffile_list_append(conffile_list_t *list, const char *name, const char *root_dir); -int conffile_list_push(conffile_list_t *list, conffile_t *data); +void conffile_list_push(conffile_list_t *list, conffile_t *data); conffile_list_elt_t *conffile_list_pop(conffile_list_t *list); #endif -- cgit v0.9.1