A buffer variable wasn't dereferenced in two similar comparisons in ResList
[AROS.git] / compiler / alib / unlockbitmaptags.c
blobe2b7114a6c3ef91ad0580a87bb7bc2920e69dda0
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include "alib_intern.h"
8 extern struct Library * CyberGfxBase;
10 /*****************************************************************************
12 NAME */
13 #define NO_INLINE_STDARG /* turn off inline def */
14 #include <proto/cybergraphics.h>
16 void UnLockBitMapTags (
18 /* SYNOPSIS */
19 APTR handle,
20 Tag tag1,
21 ...)
23 /* FUNCTION
25 INPUTS
27 RESULT
29 NOTES
31 EXAMPLE
33 BUGS
35 SEE ALSO
36 cgfx.library/UnLockBitMapTagList()
38 INTERNALS
40 HISTORY
42 *****************************************************************************/
44 AROS_NR_SLOWSTACKTAGS_PRE(tag1)
45 UnLockBitMapTagList(handle, AROS_SLOWSTACKTAGS_ARG(tag1));
46 AROS_NR_SLOWSTACKTAGS_POST
47 } /* UnLockBitMapTags */