Removed some warnings

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@192 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2002-04-23 09:31:25 +00:00
parent 2fb386d019
commit 0ff7947488
1 changed files with 0 additions and 4 deletions

View File

@ -241,8 +241,6 @@ int list_empty(LIST *list) /* The list to check */
******************************************************************************/
LIST_NODE *list_get_first(LIST *lh) /* The list to read from */
{
LIST_NODE *ln;
if(list_empty(lh)) /* Return NULL if the list is empty */
{
return NULL;
@ -260,8 +258,6 @@ LIST_NODE *list_get_first(LIST *lh) /* The list to read from */
******************************************************************************/
LIST_NODE *list_get_last(LIST *lh) /* The list to read from */
{
LIST_NODE *ln;
if(list_empty(lh)) /* Return NULL if the list is empty */
{
return NULL;