We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 230b6be commit 11f8fe9Copy full SHA for 11f8fe9
parsers/openapi.c
@@ -276,15 +276,15 @@ static void openapiPlayStateMachine (struct sOpenAPISubparser *openapi,
276
switch (openapi->play_detection_state)
277
{
278
case DSTAT_LAST_KEY:
279
- TRACE_PRINT(" key: %s\n", (char*)token->data.scalar.value);
+ TRACE_PRINT(" key: %s", (char*)token->data.scalar.value);
280
if (openapi->type_stack)
281
282
openapi->type_stack->key = parseKey(token);
283
handleKey (openapi, token);
284
}
285
break;
286
case DSTAT_LAST_VALUE:
287
- TRACE_PRINT(" value: %s\n", (char*)token->data.scalar.value);
+ TRACE_PRINT(" value: %s", (char*)token->data.scalar.value);
288
289
default:
290
0 commit comments