diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-11-04 14:49:11 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-11-04 14:49:11 +0100 |
commit | 8db328c61832a92bf3f7641061b68767141104f3 (patch) | |
tree | 831510d5b03363ed8a5d0bcb75360ed48f599b33 /src/input/Udp.cpp | |
parent | fde78e58eb3c48135b6d96680fca7eb3d617f940 (diff) | |
download | dabmux-8db328c61832a92bf3f7641061b68767141104f3.tar.gz dabmux-8db328c61832a92bf3f7641061b68767141104f3.tar.bz2 dabmux-8db328c61832a92bf3f7641061b68767141104f3.zip |
Change readFrame argument types
Diffstat (limited to 'src/input/Udp.cpp')
-rw-r--r-- | src/input/Udp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/Udp.cpp b/src/input/Udp.cpp index e534a06..a238d9b 100644 --- a/src/input/Udp.cpp +++ b/src/input/Udp.cpp @@ -87,7 +87,7 @@ int Udp::open(const std::string& name) return 0; } -int Udp::readFrame(void* buffer, int size) +int Udp::readFrame(uint8_t* buffer, size_t size) { uint8_t* data = reinterpret_cast<uint8_t*>(buffer); |