summaryrefslogtreecommitdiff
path: root/src/instrumentparser.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/instrumentparser.cc')
-rw-r--r--src/instrumentparser.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/instrumentparser.cc b/src/instrumentparser.cc
index af876a8..45e76d8 100644
--- a/src/instrumentparser.cc
+++ b/src/instrumentparser.cc
@@ -129,7 +129,7 @@ void InstrumentParser::startTag(const std::string& name, const attr_t& attr)
return;
}
- int filechannel = 1; // default, override with optional attribute
+ std::size_t filechannel = 1; // default, override with optional attribute
if(attr.find("filechannel") != attr.end())
{
filechannel = std::stoi(attr.at("filechannel"));