From ff3c39e8a6204096cf4e532b50bfc9bc6c290e3b Mon Sep 17 00:00:00 2001 From: Inseob Kim Date: Thu, 22 Feb 2018 15:12:07 +0900 Subject: Fix eols of some line from LF to CRLF Test: trivial whitespace change Change-Id: Ib72f2cab7087aaae10f7f076599873ab355a33f0 --- find_java/src/source/find_java_exe.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'find_java') diff --git a/find_java/src/source/find_java_exe.cpp b/find_java/src/source/find_java_exe.cpp index 50ca0247d..a8be377ef 100644 --- a/find_java/src/source/find_java_exe.cpp +++ b/find_java/src/source/find_java_exe.cpp @@ -63,9 +63,9 @@ static int showHelpMessage() { static void printError(const char *message) { - CString error; - error.setLastWin32Error(message); - printf(error.cstr()); + CString error; + error.setLastWin32Error(message); + printf(error.cstr()); } static void testFindJava(bool isJdk, int minVersion) { @@ -182,9 +182,9 @@ int main(int argc, char* argv[]) { } if (version == 0) { - CString s; - s.setf("Failed to find Java %d.%d (or newer) on your system. ", JAVA_MAJOR(minVersion), - JAVA_MINOR(minVersion)); + CString s; + s.setf("Failed to find Java %d.%d (or newer) on your system. ", JAVA_MAJOR(minVersion), + JAVA_MINOR(minVersion)); if (gIsDebug) { fprintf(stderr, s.cstr()); @@ -200,8 +200,8 @@ int main(int argc, char* argv[]) { if (doShortPath) { if (!javaPath.toShortPath(&javaPath)) { - CString s; - s.setf("Failed to convert path (%s) to a short DOS path. ", javaPath.cstr()); + CString s; + s.setf("Failed to convert path (%s) to a short DOS path. ", javaPath.cstr()); fprintf(stderr, s.cstr()); if (shouldPrintError) { -- cgit v1.2.3