Thanks to visit codestin.com Credit goes to github.com
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 cfcdd31 commit b295c0aCopy full SHA for b295c0a
src/backend/postmaster/pgstat.c
@@ -13,7 +13,7 @@
13
*
14
* Copyright (c) 2001-2003, PostgreSQL Global Development Group
15
16
- * $PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.63 2004/03/27 17:32:42 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/postmaster/pgstat.c,v 1.64 2004/03/27 17:59:35 momjian Exp $
17
* ----------
18
*/
19
#include "postgres.h"
@@ -1728,9 +1728,8 @@ pgstat_mainChild(PGSTAT_FORK_ARGS)
1728
1729
while (nread < targetlen)
1730
{
1731
- len = piperead(readPipe,
1732
- ((char *) &msg) + nread,
1733
- targetlen - nread);
+ len = piperead(readPipe, ((char *) &msg) + nread,
+ targetlen - nread);
1734
if (len < 0)
1735
1736
if (errno == EINTR)
0 commit comments