MXS-2015: Add missing newlines

The newlines were missing from a few of the avrorouter responses.
This commit is contained in:
Markus Mäkelä
2018-08-15 16:53:58 +03:00
parent 1c733bf450
commit d6ed10975e

View File

@ -479,7 +479,7 @@ avro_client_process_command(AVRO_INSTANCE *router, AVRO_CLIENT *client, GWBUF *q
} }
else else
{ {
dcb_printf(client->dcb, "ERR NO-FILE File '%s' not found.", client->avro_binfile); dcb_printf(client->dcb, "ERR NO-FILE File '%s' not found.\n", client->avro_binfile);
} }
} }
else else
@ -825,8 +825,7 @@ static bool avro_client_stream_data(AVRO_CLIENT *client)
} }
else else
{ {
fprintf(stderr, "No file specified\n"); dcb_printf(client->dcb, "ERR avro file not specified\n");
dcb_printf(client->dcb, "ERR avro file not specified");
} }
return read_more; return read_more;