Added some Linux fixes that were needed after the last commit.
SVN r327 (trunk)
This commit is contained in:
parent
c412b42703
commit
76e94bde6b
6 changed files with 8 additions and 15 deletions
|
|
@ -315,8 +315,8 @@ bool CheckWildcards (const char *pattern, const char *text)
|
|||
|
||||
void FormatGUID (char *text, const GUID &guid)
|
||||
{
|
||||
sprintf (text, "{%08lx-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}",
|
||||
guid.Data1, guid.Data2, guid.Data3,
|
||||
sprintf (text, "{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x}",
|
||||
(uint32)guid.Data1, guid.Data2, guid.Data3,
|
||||
guid.Data4[0], guid.Data4[1],
|
||||
guid.Data4[2], guid.Data4[3],
|
||||
guid.Data4[4], guid.Data4[5],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue