Skip to content

Commit

Permalink
convert uint to int in generator
Browse files Browse the repository at this point in the history
  • Loading branch information
apolcyn committed Oct 26, 2016
1 parent 0ad5f59 commit 2d05670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/ruby_generator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ grpc::string PackageToModule(const grpc::string& name) {
grpc::string result;
result.reserve(name.size());

for (uint i = 0; i < name.size(); i++) {
for (int i = 0; i < name.size(); i++) {
if (name[i] == '_') {
next_upper = true;
} else {
Expand Down

0 comments on commit 2d05670

Please sign in to comment.