diff options
author | Max Kellermann <max@duempel.org> | 2014-08-06 16:54:53 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-08-06 17:29:05 +0200 |
commit | ea26da0be7f4776d894874d68e468586b3be0efa (patch) | |
tree | 43475dcf6fce9f5bfd2bdeb5ede5f5252dcec21f /test | |
parent | 1f3d3970f672ec9b200ed358e2d02c45c97c34eb (diff) |
util/FifoBuffer: rename to StaticFifoBuffer
Diffstat (limited to 'test')
-rw-r--r-- | test/run_convert.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/run_convert.cxx b/test/run_convert.cxx index 3c75b2c19..47d9eae86 100644 --- a/test/run_convert.cxx +++ b/test/run_convert.cxx @@ -28,7 +28,7 @@ #include "AudioFormat.hxx" #include "pcm/PcmConvert.hxx" #include "config/ConfigGlobal.hxx" -#include "util/FifoBuffer.hxx" +#include "util/StaticFifoBuffer.hxx" #include "util/Error.hxx" #include "Log.hxx" #include "stdbin.h" @@ -81,7 +81,7 @@ int main(int argc, char **argv) return EXIT_FAILURE; } - FifoBuffer<uint8_t, 4096> buffer; + StaticFifoBuffer<uint8_t, 4096> buffer; while (true) { { |