X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbook.cpp;h=9839124c0efd12ee379447b59fd8382d0525c151;hp=c69eab739b7dfcae8284db5c417225ad466a831a;hb=0d69ac33ff1b0258c9b18dca48f7b8b40fab5713;hpb=2155fb78256204aae5aa80946dfe7d8d9c6e2397 diff --git a/src/book.cpp b/src/book.cpp index c69eab73..9839124c 100644 --- a/src/book.cpp +++ b/src/book.cpp @@ -1,7 +1,7 @@ /* Stockfish, a UCI chess playing engine derived from Glaurung 2.1 Copyright (C) 2004-2008 Tord Romstad (Glaurung author) - Copyright (C) 2008 Marco Costalba + Copyright (C) 2008-2009 Marco Costalba Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -372,7 +372,7 @@ void Book::open(const string& fName) { if (!good()) { cerr << "Failed to open book file " << fileName << endl; - exit(EXIT_FAILURE); + Application::exit_with_failure(); } } @@ -489,7 +489,7 @@ void Book::read_entry(BookEntry& entry, int idx) { if (!good()) { cerr << "Failed to read book entry at index " << idx << endl; - exit(EXIT_FAILURE); + Application::exit_with_failure(); } }