diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-07-03 15:48:30 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-07-03 15:48:30 +0200 |
commit | 36219517c52ad97ab96545c9289b82890861d77b (patch) | |
tree | 7d1f73ac9c3c0009df86ef4210ecba6f39b90bd8 /src/Outputs.h | |
parent | e7a9a94fb8ebd50e10ed403ef871620181d3aa1d (diff) | |
download | ODR-AudioEnc-36219517c52ad97ab96545c9289b82890861d77b.tar.gz ODR-AudioEnc-36219517c52ad97ab96545c9289b82890861d77b.tar.bz2 ODR-AudioEnc-36219517c52ad97ab96545c9289b82890861d77b.zip |
Enable -Wall and fix a few warnings
Diffstat (limited to 'src/Outputs.h')
-rw-r--r-- | src/Outputs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Outputs.h b/src/Outputs.h index 513def4..b5ee25a 100644 --- a/src/Outputs.h +++ b/src/Outputs.h @@ -131,8 +131,8 @@ class EDI: public Base { EDI& operator=(const EDI&) = delete; virtual ~EDI() override; - void add_udp_destination(const std::string& host, int port); - void add_tcp_destination(const std::string& host, int port); + void add_udp_destination(const std::string& host, unsigned int port); + void add_tcp_destination(const std::string& host, unsigned int port); bool enabled() const; |