summaryrefslogtreecommitdiffstats
path: root/src/utils.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2022-10-07 10:38:45 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2022-10-07 10:38:45 +0200
commit589e2f0d174ca043ac17fe3ae06b7e5532542e9d (patch)
tree628fec4b60dff4683d844f4b456814f4923fa893 /src/utils.h
parent7c1c779cfd01162d020d0c276bb605adfe338df9 (diff)
downloaddabmux-589e2f0d174ca043ac17fe3ae06b7e5532542e9d.tar.gz
dabmux-589e2f0d174ca043ac17fe3ae06b7e5532542e9d.tar.bz2
dabmux-589e2f0d174ca043ac17fe3ae06b7e5532542e9d.zip
Make hexparse return unsigned
This fixes the definition of long service IDs on 32-bit systems
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils.h b/src/utils.h
index b844676..331a0b2 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -73,6 +73,6 @@ void printEnsemble(const std::shared_ptr<dabEnsemble>& ensemble);
void printSubchannels(const vec_sp_subchannel& subchannels);
-long hexparse(const std::string& input);
+unsigned long hexparse(const std::string& input);
bool stringEndsWith(std::string const &fullString, std::string const &ending);