fix to build with pedantic flags
[AROS.git] / compiler / arossupport / libgettagdata.c
blob33d05b93f45882d6e946ad118c80cb9fe069d6ca
1 /*
2 Copyright © 1995-2014, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <proto/arossupport.h>
8 IPTR LibGetTagData(Tag tagValue, IPTR defaultVal, const struct TagItem *tagList)
10 struct TagItem *tag = LibFindTagItem(tagValue, tagList);
12 return tag ? tag->ti_Data : defaultVal;