Navigation Menu

Skip to content

Commit

Permalink
Reduce a needless new line
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jan 7, 2015
1 parent 2663b8c commit a456cd1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/groonga.c
Expand Up @@ -291,7 +291,9 @@ s_output_raw(grn_ctx *ctx, int flags, FILE *stream)
if (flags & GRN_CTX_TAIL) {
grn_obj *command;

fputc('\n', stream);
if (chunk_size > 0) {
fputc('\n', stream);
}
fflush(stream);

command = GRN_CTX_USER_DATA(ctx)->ptr;
Expand Down

0 comments on commit a456cd1

Please sign in to comment.