diff options
| author | Louis Burda <quent.burda@gmail.com> | 2021-05-13 13:55:07 +0200 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2021-05-13 13:55:07 +0200 |
| commit | 9d4f8aaceda37364748a4be8238ffde4c137a19c (patch) | |
| tree | 0c641bbf257f606503edd04c3d4a1fd1fd559e62 /service/src/stlfile.c | |
| parent | f1285b65d59119b71c7c4f98dddcf2d6969922be (diff) | |
| download | enowars5-service-stldoctor-9d4f8aaceda37364748a4be8238ffde4c137a19c.tar.gz enowars5-service-stldoctor-9d4f8aaceda37364748a4be8238ffde4c137a19c.zip | |
added cleanup script, improved poc test, addec echo for debugging and small fixes
Diffstat (limited to 'service/src/stlfile.c')
| -rw-r--r-- | service/src/stlfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/src/stlfile.c b/service/src/stlfile.c index 72868f8..60f8b40 100644 --- a/service/src/stlfile.c +++ b/service/src/stlfile.c @@ -92,7 +92,7 @@ consume_keyword(char **start) for (i = 0; i < ARRSIZE(kwmap); i++) { len = strlen(kwmap[i].str); if (!strncmp(kwmap[i].str, bp, len) && strchr(wsset, *(bp + len))) { - printf("GOT: %s\n", kwmap[i].str); + // printf("GOT: %s\n", kwmap[i].str); *start = bp + len + (bp[len] ? 1 : 0); return kwmap[i].code; } |
