Skip to content

Commit

Permalink
Adjust comment to make camlp5 happy
Browse files Browse the repository at this point in the history
  • Loading branch information
alavrik committed Jun 29, 2019
1 parent 2de0e5e commit 82829ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/of_proto.ml
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ Reference implementation from protobuf-2.3.0/src/google/protobuf/stubs/strutil.c
case '\\': *d++ = '\\'; break;
case '?': *d++ = '\?'; break; // \? Who knew?
case '\'': *d++ = '\''; break;
case '"': *d++ = '\"'; break;
case '"': *d++ = '"'; break;
case '0': case '1': case '2': case '3': // octal digit: 1 to 3 digits
case '4': case '5': case '6': case '7': {
char ch = *p - '0';
Expand Down

0 comments on commit 82829ad

Please sign in to comment.