X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=mware%2Ftext_format.c;h=8ae71b668fb8497309330d8dd143e1c76f308ba1;hb=646a88d7412eec847c282b9b2050b3a37a9af7a5;hp=c38bff8cd2c96efaf09906906cfee89c8e0d263b;hpb=1a3aed4dd1bf9448fd36e95f47280ffc042dd570;p=bertos.git diff --git a/mware/text_format.c b/mware/text_format.c index c38bff8c..8ae71b66 100755 --- a/mware/text_format.c +++ b/mware/text_format.c @@ -3,7 +3,7 @@ * * * \brief printf-family routines for text output @@ -15,6 +15,12 @@ /*#* *#* $Log$ + *#* Revision 1.10 2005/11/04 16:20:02 bernie + *#* Fix reference to README.devlib in header. + *#* + *#* Revision 1.9 2004/12/31 17:47:45 bernie + *#* Rename UNUSED() to UNUSED_ARG(). + *#* *#* Revision 1.8 2004/11/16 21:16:56 bernie *#* Update to new naming scheme in mware/gfx.c. *#* @@ -174,7 +180,10 @@ int PGM_FUNC(text_xprintf)(struct Bitmap *bm, /*! * Return the width in pixels of a vprintf()-formatted string. */ -int PGM_FUNC(text_vwidthf)(UNUSED(struct Bitmap *, bm), const char * PGM_ATTR fmt, va_list ap) +int PGM_FUNC(text_vwidthf)( + UNUSED_ARG(struct Bitmap *, bm), + const char * PGM_ATTR fmt, + va_list ap) { return PGM_FUNC(vsprintf)(NULL, fmt, ap) * FONT_WIDTH; }