wesnoth-cvs-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Wesnoth-cvs-commits] wesnoth/src filesystem.cpp


From: David White
Subject: [Wesnoth-cvs-commits] wesnoth/src filesystem.cpp
Date: Mon, 05 Sep 2005 10:03:14 -0400

CVSROOT:        /cvsroot/wesnoth
Module name:    wesnoth
Branch:         
Changes by:     David White <address@hidden>    05/09/05 14:03:13

Modified files:
        src            : filesystem.cpp 

Log message:
        changed failure to open a file from an error to a normal event in 
logging

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/filesystem.cpp.diff?tr1=1.77&tr2=1.78&r1=text&r2=text

Patches:
Index: wesnoth/src/filesystem.cpp
diff -u wesnoth/src/filesystem.cpp:1.77 wesnoth/src/filesystem.cpp:1.78
--- wesnoth/src/filesystem.cpp:1.77     Sat Aug  6 20:26:54 2005
+++ wesnoth/src/filesystem.cpp  Mon Sep  5 14:03:13 2005
@@ -1,4 +1,4 @@
-/* $Id: filesystem.cpp,v 1.77 2005/08/06 20:26:54 j_daniel Exp $ */
+/* $Id: filesystem.cpp,v 1.78 2005/09/05 14:03:13 Sirp Exp $ */
 /*
    Copyright (C) 2003 by David White <address@hidden>
    Part of the Battle for Wesnoth Project http://www.wesnoth.org/
@@ -478,7 +478,7 @@
        // still useful with zipios, for things like cache and prefs
        std::istream *s = new std::ifstream(fname.c_str(), 
std::ios_base::binary);
        if (s->fail())
-               ERR_FS << "streaming " << fname << " failed.\n";
+               LOG_FS << "streaming " << fname << " failed.\n";
        return s;
 }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]