diff options
author | Max Kellermann <max@musicpd.org> | 2020-01-14 22:39:12 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2020-01-14 22:40:54 +0100 |
commit | 2d5bf532403058885f56fc62081b5099be5d09a3 (patch) | |
tree | fd7a9e03d6068f6cb58866e0ce40b4007813a160 /src/pcm/Dsd2Pcm.hxx | |
parent | a65f7b1006d445e6deb2882afa97488d7ff108bc (diff) |
pcm/Dsd2Pcm: use `sizet_t` instead of `int`
Diffstat (limited to 'src/pcm/Dsd2Pcm.hxx')
-rw-r--r-- | src/pcm/Dsd2Pcm.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcm/Dsd2Pcm.hxx b/src/pcm/Dsd2Pcm.hxx index 027a004a3..55d027e38 100644 --- a/src/pcm/Dsd2Pcm.hxx +++ b/src/pcm/Dsd2Pcm.hxx @@ -40,7 +40,7 @@ or implied, of Sebastian Gesemann. class Dsd2Pcm { public: /* must be a power of two */ - static constexpr int FIFOSIZE = 16; + static constexpr size_t FIFOSIZE = 16; private: /** bit mask for FIFO offsets */ |