Skip to content

Commit

Permalink
0x2 to signify ascii value
Browse files Browse the repository at this point in the history
  • Loading branch information
windytan committed Dec 2, 2016
1 parent 98c0038 commit d9aea67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rdsstring.cc
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ size_t RDSString::lengthExpected() const {
}

void RDSString::resize(int n) {
chars_.resize(n, 32);
chars_.resize(n, 0x20);
}

std::string RDSString::getString() const {
Expand Down

0 comments on commit d9aea67

Please sign in to comment.