# # patch "ChangeLog" # from [d3e24bb1960a28fcdf6539ab28650760cf3f7f4c] # to [1110805fff75d17d1c7636ed74b7e950e5f52fc6] # # patch "file_io.cc" # from [da07ec92b669445496f03005c735d6b41911e422] # to [fe175726e8c0d497d7d6259343259527822b56fc] # ======================================================================== --- ChangeLog d3e24bb1960a28fcdf6539ab28650760cf3f7f4c +++ ChangeLog 1110805fff75d17d1c7636ed74b7e950e5f52fc6 @@ -1,3 +1,17 @@ +2005-08-30 Benoît Dejean + + * file_io.cc (walk_tree): Fixed format. + + Someone should fix these new warnings for ppl with signed chars. + + In function void set_char_is_binary(char, bool) + 133: warning: array subscript has type char + In function void init_char_is_binary() + 147: warning: comparison between signed and unsigned integer expressions + In function bool guess_binary(const std::string&) + 160: warning: comparison between signed and unsigned integer expressions + 162: warning: array subscript has type char + 2005-08-31 Marcel van der Boom * std_hooks.lua (execute_confirm): New function. ======================================================================== --- file_io.cc da07ec92b669445496f03005c735d6b41911e422 +++ file_io.cc fe175726e8c0d497d7d6259343259527822b56fc @@ -478,7 +478,7 @@ switch (get_path_status(path)) { case path::nonexistent: - N(require_existing_path, F("no such file or directory") % path); + N(require_existing_path, F("no such file or directory: '%s'") % path); walker.visit_file(path); break; case path::file: