setup_native/source/win32/wintools/msimsp/msimsp.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
New commits: commit f8e77c0894f5eb4495edb79a387f0deb63830226 Author: Julien Nabet <[email protected]> Date: Mon Jan 2 12:01:44 2017 +0100 Revert "tdf#99589 tolower changed to rtl::toAsciiLowerCase" Following Stephan's message https://gerrit.libreoffice.org/#/c/32462/ This reverts commit 47f338c1cfca96db8f0384c3498755c4cd6ff2c4. Change-Id: I6846fe495a9e1cccce56a2764c61b804c0eaa75c Reviewed-on: https://gerrit.libreoffice.org/32637 Reviewed-by: Julien Nabet <[email protected]> Tested-by: Julien Nabet <[email protected]> diff --git a/setup_native/source/win32/wintools/msimsp/msimsp.c b/setup_native/source/win32/wintools/msimsp/msimsp.c index 2af4ceb..8e2c99d 100644 --- a/setup_native/source/win32/wintools/msimsp/msimsp.c +++ b/setup_native/source/win32/wintools/msimsp/msimsp.c @@ -9,7 +9,6 @@ #include <stdio.h> #include <sys/stat.h> -#include <rtl/character.hxx> #define WIN32_LEAN_AND_MEAN #include <windows.h> @@ -45,7 +44,7 @@ int main(int argc, char *argv[]) /* Get parameters */ while (argv[1] && (argv[1][0] == '-' || argv[1][0] == '/')) { - switch(rtl::toAsciiLowerCase(argv[1][1])) + switch(tolower(argv[1][1])) { case 's': argv++; argc++; _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
