From dc13b569150359005a9bf343aef56eeda12094a1 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Mon, 30 Aug 2021 14:16:49 +0200 Subject: Fix compiler warnings (Windows only) src/Fl_Native_File_Chooser_WIN32.cxx:331:12: warning: suggest parentheses around assignment used as truth value [-Wparentheses] 331 | while ( s=strchr(s,'\\') ) *s = '/'; | ~^~~~~~~~~~~~~~~ src/Fl_Native_File_Chooser_WIN32.cxx:336:12: warning: suggest parentheses around assignment used as truth value [-Wparentheses] 336 | while ( s=strchr(s,'/') ) *s = '\\'; | ~^~~~~~~~~~~~~~ --- src/Fl_Native_File_Chooser_WIN32.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/Fl_Native_File_Chooser_WIN32.cxx b/src/Fl_Native_File_Chooser_WIN32.cxx index 1046e9260..71d98f04c 100644 --- a/src/Fl_Native_File_Chooser_WIN32.cxx +++ b/src/Fl_Native_File_Chooser_WIN32.cxx @@ -328,12 +328,12 @@ void Fl_WinAPI_Native_File_Chooser_Driver::ClearBINF() { // CONVERT WINDOWS BACKSLASHES TO UNIX FRONTSLASHES void Fl_WinAPI_Native_File_Chooser_Driver::Win2Unix(char *s) { - while ( s=strchr(s,'\\') ) *s = '/'; + while ( (s=strchr(s,'\\')) ) *s = '/'; } // CONVERT UNIX FRONTSLASHES TO WINDOWS BACKSLASHES void Fl_WinAPI_Native_File_Chooser_Driver::Unix2Win(char *s) { - while ( s=strchr(s,'/') ) *s = '\\'; + while ( (s=strchr(s,'/')) ) *s = '\\'; } // SEE IF PATH IS FRONT SLASH OR BACKSLASH STYLE -- cgit v1.2.3