diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-06-19 10:45:20 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-06-19 10:45:20 +0200 |
commit | 711f52b5a1f114ae911d0e072498c81831c0b814 (patch) | |
tree | d687175b942b73435b141a1e9d2a240339d7f215 | |
parent | 8e7f5fd041f7eb5730d0810d19a5d96183e41a36 (diff) | |
download | dabmux-711f52b5a1f114ae911d0e072498c81831c0b814.tar.gz dabmux-711f52b5a1f114ae911d0e072498c81831c0b814.tar.bz2 dabmux-711f52b5a1f114ae911d0e072498c81831c0b814.zip |
remove warning due to signedness of comparison
-rw-r--r-- | src/DabMux.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DabMux.cpp b/src/DabMux.cpp index 972a4a2..e7da965 100644 --- a/src/DabMux.cpp +++ b/src/DabMux.cpp @@ -455,7 +455,7 @@ int main(int argc, char *argv[]) etiLog.level(info) << "Start loop"; /* Each iteration of the main loop creates one ETI frame */ - ssize_t currentFrame; + size_t currentFrame; for (currentFrame = 0; running; currentFrame++) { mux.mux_frame(outputs); |