A buffer variable wasn't dereferenced in two similar comparisons in ResList
[AROS.git] / compiler / alib / refreshdtobjects.c
blob6db9b09edc9b9deeaec1defb8813760ca785bad3
1 /*
2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Varargs version of datatypes.library/RefreshDTObjectA()
6 Lang: english
7 */
9 #include <intuition/classusr.h>
10 #include <utility/tagitem.h>
12 extern struct Library *DataTypesBase;
14 /*****************************************************************************
16 NAME */
17 #define NO_INLINE_STDARG /* turn off inline def */
18 #include <proto/datatypes.h>
20 void RefreshDTObjects (
22 /* SYNOPSIS */
23 Object * o,
24 struct Window * win,
25 struct Requester *req,
26 Tag tag1,
27 ...)
29 /* FUNCTION
30 This is the varargs version of datatypes.library/RefreshDTObjectA().
31 For information see datatypes.library/RefreshDTObjectA().
33 INPUTS
35 RESULT
37 NOTES
39 EXAMPLE
41 BUGS
43 SEE ALSO
44 datatypes.library/RefreshDTObjectA()
46 INTERNALS
48 HISTORY
50 *****************************************************************************/
52 AROS_NR_SLOWSTACKTAGS_PRE(tag1)
53 RefreshDTObjectA (o, win, req, AROS_SLOWSTACKTAGS_ARG(tag1));
54 AROS_NR_SLOWSTACKTAGS_POST
55 } /* RefreshDTObjects */