Ignore:
Timestamp:
Dec 18, 2011, 10:28:22 PM (14 years ago)
Author:
dmik
Message:

Merge branch gcc-kmk to trunk.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        1 bin
        2 Makefile.inc
         1env.cmd
         2LocalConfig.kmk
    • Property svn:mergeinfo set to
      /branches/gcc-kmkmergedeligible
  • trunk/src/mscms/profile.c

    r21311 r21916  
    1919 */
    2020
     21#include <stdarg.h>
     22#include <string.h>
     23#include <memory.h>
     24
    2125#include "config.h"
    2226#include "wine/debug.h"
    2327#include "wine/unicode.h"
    24 
    25 #include <stdarg.h>
    2628
    2729#include "windef.h"
     
    5860}
    5961
    60 const char *MSCMS_dbgstr_tag( DWORD tag )
    61 {
    62     return sprintf( "'%c%c%c%c'",
     62static const char *MSCMS_dbgstr_tag( DWORD tag )
     63{
     64    static char buf[5];
     65    sprintf( buf, "'%c%c%c%c'",
    6366        (char)(tag >> 24), (char)(tag >> 16), (char)(tag >> 8), (char)(tag) );
     67    return buf;
    6468}
    6569
Note: See TracChangeset for help on using the changeset viewer.