forked from len0rd/rockbox
Removed some warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@192 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2fb386d019
commit
0ff7947488
1 changed files with 0 additions and 4 deletions
|
@ -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 *list_get_first(LIST *lh) /* The list to read from */
|
||||||
{
|
{
|
||||||
LIST_NODE *ln;
|
|
||||||
|
|
||||||
if(list_empty(lh)) /* Return NULL if the list is empty */
|
if(list_empty(lh)) /* Return NULL if the list is empty */
|
||||||
{
|
{
|
||||||
return NULL;
|
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 *list_get_last(LIST *lh) /* The list to read from */
|
||||||
{
|
{
|
||||||
LIST_NODE *ln;
|
|
||||||
|
|
||||||
if(list_empty(lh)) /* Return NULL if the list is empty */
|
if(list_empty(lh)) /* Return NULL if the list is empty */
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue