From 2fdb3fc0b67757afd6fe7a244b6e14d2a546af0e Mon Sep 17 00:00:00 2001 From: graham.gower Date: Tue, 08 Dec 2009 20:20:03 -0500 Subject: Merge commit 'grg' into HEAD git-svn-id: http://opkg.googlecode.com/svn/trunk@471 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- (limited to 'libopkg/void_list.c') diff --git a/libopkg/void_list.c b/libopkg/void_list.c index f2b5890..04066bf 100644 --- a/libopkg/void_list.c +++ b/libopkg/void_list.c @@ -26,7 +26,7 @@ void void_list_elt_init(void_list_elt_t *elt, void *data) elt->data = data; } -void_list_elt_t * void_list_elt_new (void *data) { +static void_list_elt_t * void_list_elt_new (void *data) { void_list_elt_t *elt; /* freed in void_list_elt_deinit */ elt = xcalloc(1, sizeof(void_list_elt_t)); @@ -96,7 +96,7 @@ void *void_list_remove(void_list_t *list, void_list_elt_t **iter) break; } if ( pos != old_elt) { - fprintf(stderr, "%s: ERROR: element not found in list\n", __FUNCTION__); + opkg_msg(ERROR, "Internal error: element not found in list.\n"); return NULL; } -- cgit v0.9.1