diff options
author | Max Kellermann <max@duempel.org> | 2013-08-07 09:35:30 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-08-07 10:08:36 +0200 |
commit | a27d105dcd1376c1df4ff16e388dfcfa3b355cc6 (patch) | |
tree | 6903bc549cc57250bea724bf800a3f7e6812841e /src/MusicBuffer.cxx | |
parent | 67e44b0f2c76a8c4913048fe3b8fe90116fa595b (diff) | |
download | mpd-a27d105dcd1376c1df4ff16e388dfcfa3b355cc6.tar.gz mpd-a27d105dcd1376c1df4ff16e388dfcfa3b355cc6.tar.xz mpd-a27d105dcd1376c1df4ff16e388dfcfa3b355cc6.zip |
FatalError: new library to replace mpd_error.h
Diffstat (limited to '')
-rw-r--r-- | src/MusicBuffer.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/MusicBuffer.cxx b/src/MusicBuffer.cxx index ea03fc0b9..049fb81d9 100644 --- a/src/MusicBuffer.cxx +++ b/src/MusicBuffer.cxx @@ -22,7 +22,7 @@ #include "MusicChunk.hxx" #include "thread/Mutex.hxx" #include "util/SliceBuffer.hxx" -#include "mpd_error.h" +#include "FatalError.hxx" #include <assert.h> @@ -33,7 +33,7 @@ struct music_buffer : public SliceBuffer<music_chunk> { music_buffer(unsigned num_chunks) :SliceBuffer(num_chunks) { if (IsOOM()) - MPD_ERROR("Failed to allocate buffer"); + FatalError("Failed to allocate buffer"); } }; |