diff options
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"); } }; |