diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-03-13 20:22:33 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2014-03-13 20:22:33 +0100 |
commit | 22d19513a2699e76b2933b73df50b041c362d0d0 (patch) | |
tree | 1bd0c1816789e7e8f51770c65483922a9d106e09 /src/dabplus-enc-alsa-zmq.cpp | |
parent | e415e4182383254afefa513b02633fae20f6b038 (diff) | |
download | ODR-AudioEnc-22d19513a2699e76b2933b73df50b041c362d0d0.tar.gz ODR-AudioEnc-22d19513a2699e76b2933b73df50b041c362d0d0.tar.bz2 ODR-AudioEnc-22d19513a2699e76b2933b73df50b041c362d0d0.zip |
remove c++11 deprecation warning
Diffstat (limited to 'src/dabplus-enc-alsa-zmq.cpp')
-rw-r--r-- | src/dabplus-enc-alsa-zmq.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dabplus-enc-alsa-zmq.cpp b/src/dabplus-enc-alsa-zmq.cpp index 99eec6e..3bf252a 100644 --- a/src/dabplus-enc-alsa-zmq.cpp +++ b/src/dabplus-enc-alsa-zmq.cpp @@ -193,7 +193,7 @@ int main(int argc, char *argv[]) { bool drift_compensation = false; AACENC_InfoStruct info = { 0 }; - char* pad_fifo = "/tmp/pad.fifo"; + const char* pad_fifo = "/tmp/pad.fifo"; int pad_fd; unsigned char pad_buf[128]; int padlen; |