Changeset 21916 for trunk/src/mscms/profile.c
- Timestamp:
- Dec 18, 2011, 10:28:22 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 bin 2 Makefile.inc 1 env.cmd 2 LocalConfig.kmk
-
-
Property svn:mergeinfo
set to
/branches/gcc-kmk merged eligible
- Property svn:ignore
-
trunk/src/mscms/profile.c
r21311 r21916 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.