From 89bf8b98b6ba04c8e2bb7d4d5c02bf250ba74671 Mon Sep 17 00:00:00 2001 From: Alejandro del Castillo Date: Wed, 10 Feb 2016 16:27:27 -0600 Subject: [PATCH] conffile_list_push: remove unused function Signed-off-by: Alejandro del Castillo --- libopkg/conffile_list.c | 5 ----- libopkg/conffile_list.h | 1 - 2 files changed, 6 deletions(-) diff --git a/libopkg/conffile_list.c b/libopkg/conffile_list.c index 25f5b9d..c5631b0 100644 --- a/libopkg/conffile_list.c +++ b/libopkg/conffile_list.c @@ -33,11 +33,6 @@ conffile_t *conffile_list_append(conffile_list_t * list, const char *file_name, return nv_pair_list_append(list, file_name, md5sum); } -void conffile_list_push(conffile_list_t * list, conffile_t * data) -{ - nv_pair_list_push(list, data); -} - conffile_list_elt_t *conffile_list_pop(conffile_list_t * list) { conffile_list_elt_t *pos = nv_pair_list_pop(list); diff --git a/libopkg/conffile_list.h b/libopkg/conffile_list.h index c689d8f..62c5de8 100644 --- a/libopkg/conffile_list.h +++ b/libopkg/conffile_list.h @@ -30,7 +30,6 @@ void conffile_list_deinit(conffile_list_t * list); conffile_t *conffile_list_append(conffile_list_t * list, const char *name, const char *root_dir); -void conffile_list_push(conffile_list_t * list, conffile_t * data); conffile_list_elt_t *conffile_list_pop(conffile_list_t * list); #endif -- 2.25.1