| Index: samples/lineprocessor.cc
|
| diff --git a/samples/lineprocessor.cc b/samples/lineprocessor.cc
|
| index 505dabf9459b7d5d471f870ae55ce7f70ee86304..61517d36e54d3550a5023e1f41e0f01776f8fdff 100644
|
| --- a/samples/lineprocessor.cc
|
| +++ b/samples/lineprocessor.cc
|
| @@ -152,7 +152,7 @@ int RunMain(int argc, char* argv[]) {
|
| } else if (strcmp(str, "--main-cycle-in-js") == 0) {
|
| cycle_type = CycleInJs;
|
| } else if (strcmp(str, "-p") == 0 && i + 1 < argc) {
|
| - port_number = atoi(argv[i + 1]);
|
| + port_number = atoi(argv[i + 1]); // NOLINT
|
| i++;
|
| } else if (strncmp(str, "--", 2) == 0) {
|
| printf("Warning: unknown flag %s.\nTry --help for options\n", str);
|
|
|