Skip to content

Commit

Permalink
fix #6655
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Mar 31, 2023
1 parent b386b84 commit 996e5b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/zstring.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ zstring::zstring(char const* s) {
m_buffer.push_back(ch);
}
else {
m_buffer.push_back(*s);
m_buffer.push_back((unsigned char)*s);
++s;
}
}
Expand Down

0 comments on commit 996e5b1

Please sign in to comment.