From 1ab2afda1525e2a283e75e4fd82dc32474ecd375 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 18 Jun 2015 00:12:15 -0400 Subject: [PATCH] Removed a few tabstops to test something on the Mercurial server. --- src/platform_winrt.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/platform_winrt.cpp b/src/platform_winrt.cpp index 5442dbf6..7711949d 100644 --- a/src/platform_winrt.cpp +++ b/src/platform_winrt.cpp @@ -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! */