From f90c190a8e42c65d26dcbf889801cfe1e42c5dab Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Wed, 8 Dec 2010 12:15:48 +0000 Subject: Fixed some compiler warnings, most of them in Windows-specific code. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7975 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_File_Chooser2.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Fl_File_Chooser2.cxx') diff --git a/src/Fl_File_Chooser2.cxx b/src/Fl_File_Chooser2.cxx index 9d7f95148..9a81f44a9 100644 --- a/src/Fl_File_Chooser2.cxx +++ b/src/Fl_File_Chooser2.cxx @@ -842,8 +842,8 @@ Fl_File_Chooser::fileNameCB() // Enter pressed - select or change directory... #if (defined(WIN32) && ! defined(__CYGWIN__)) || defined(__EMX__) if ((isalpha(pathname[0] & 255) && pathname[1] == ':' && !pathname[2]) || - _fl_filename_isdir_quick(pathname) && - compare_dirnames(pathname, directory_)) { + (_fl_filename_isdir_quick(pathname) && + compare_dirnames(pathname, directory_))) { #else if (_fl_filename_isdir_quick(pathname) && compare_dirnames(pathname, directory_)) { -- cgit v1.2.3