From b59aa757205b2dc330d7864d88381c67beefb254 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sun, 16 Jul 2006 16:50:54 +0000 Subject: remove the glib library dependency We never used many features from it, so there's no point in keeping it and forcing people to install a non-standard library. It may be standard on many GNU/Linux distributions, but there are many other UNIXes out there. This makes life much easier for people cross-compiling (like me :) git-svn-id: https://svn.musicpd.org/mpd/trunk@4361 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/list.c') diff --git a/src/list.c b/src/list.c index dc32e9c55..e681054fa 100644 --- a/src/list.c +++ b/src/list.c @@ -195,7 +195,7 @@ int insertInListWithoutKey(List * list, void * data) { /* if _key_ is not found, *_node_ is assigned to the node before which the info would be found */ -static int findNodeInList(List * list, char * key, ListNode ** node, int * pos) { +int findNodeInList(List * list, char * key, ListNode ** node, int * pos) { long high; long low; long cur; -- cgit v1.2.3