Removed a few tabstops to test something on the Mercurial server.

This commit is contained in:
Ryan C. Gordon 2015-06-18 00:12:15 -04:00
parent fb31167e11
commit 1ab2afda15
1 changed files with 2 additions and 2 deletions

View File

@ -71,12 +71,12 @@
#define UTF8_TO_UNICODE_STACK_MACRO(w_assignto, str) { \
if (str == NULL) \
w_assignto = NULL; \
else { \
else { \
const PHYSFS_uint64 len = (PHYSFS_uint64) ((strlen(str) + 1) * 2); \
w_assignto = (WCHAR *) __PHYSFS_smallAlloc(len); \
if (w_assignto != NULL) \
PHYSFS_utf8ToUtf16(str, (PHYSFS_uint16 *) w_assignto, len); \
} \
} \
} \
/* Note this counts WCHARs, not codepoints! */