summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--client/cmd_line_parser.cpp3
-rw-r--r--client/glz_decoder.cpp2
2 files changed, 2 insertions, 3 deletions
diff --git a/client/cmd_line_parser.cpp b/client/cmd_line_parser.cpp
index 25ce05bf..b937fb0f 100644
--- a/client/cmd_line_parser.cpp
+++ b/client/cmd_line_parser.cpp
@@ -497,10 +497,9 @@ void CmdLineParser::show_help()
os << " ";
}
if (line.size() > HELP_WIDTH) {
- int now = HELP_WIDTH;
+ size_t last_space, now = HELP_WIDTH;
std::string sub;
sub.append(line, 0, now);
- int last_space;
if ((last_space = sub.find_last_of(' ')) != std::string::npos) {
now = last_space;
sub.resize(now++);
diff --git a/client/glz_decoder.cpp b/client/glz_decoder.cpp
index e5dd0fa8..d6880517 100644
--- a/client/glz_decoder.cpp
+++ b/client/glz_decoder.cpp
@@ -50,7 +50,7 @@ GlzDecoder::~GlzDecoder()
void GlzDecoder::decode_header()
{
- int magic;
+ uint32_t magic;
int version;
uint8_t tmp;
int stride;