Changeset 21891 for branches/gcc-kmk/src/mscms/profile.c
- Timestamp:
- Dec 15, 2011, 12:50:15 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/mscms/profile.c
r21311 r21891 19 19 */ 20 20 21 #include <stdarg.h> 22 #include <string.h> 23 #include <memory.h> 24 21 25 #include "config.h" 22 26 #include "wine/debug.h" 23 27 #include "wine/unicode.h" 24 25 #include <stdarg.h>26 28 27 29 #include "windef.h" … … 58 60 } 59 61 60 const char *MSCMS_dbgstr_tag( DWORD tag ) 61 { 62 return sprintf( "'%c%c%c%c'", 62 static const char *MSCMS_dbgstr_tag( DWORD tag ) 63 { 64 static char buf[5]; 65 sprintf( buf, "'%c%c%c%c'", 63 66 (char)(tag >> 24), (char)(tag >> 16), (char)(tag >> 8), (char)(tag) ); 67 return buf; 64 68 } 65 69
Note:
See TracChangeset
for help on using the changeset viewer.