Skip to content

Commit

Permalink
fixed a source line exceeding 80 cols.
Browse files Browse the repository at this point in the history
  • Loading branch information
agentzh committed Feb 2, 2012
1 parent 85b52b3 commit 7275ca4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ngx_postgres_output.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,8 @@ ngx_postgres_output_text(ngx_http_request_t *r, PGresult *res)
} else {
size = PQgetlength(res, row, col);
if (size) {
b->last = ngx_copy(b->last, PQgetvalue(res, row, col), size);
b->last = ngx_copy(b->last, PQgetvalue(res, row, col),
size);
}
}

Expand Down

0 comments on commit 7275ca4

Please sign in to comment.