1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Too few parens for my taste in this macro.

This commit is contained in:
Tom Lane
2004-05-31 18:42:40 +00:00
parent 87de80e95a
commit 8b1ae8fa3f

View File

@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/interfaces/libpq/libpq-int.h,v 1.87 2004/03/25 21:48:59 momjian Exp $ * $PostgreSQL: pgsql/src/interfaces/libpq/libpq-int.h,v 1.88 2004/05/31 18:42:40 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -490,7 +490,7 @@ __attribute__((format_arg(1)));
#else #else
#define SOCK_ERRNO errno #define SOCK_ERRNO errno
#define SOCK_STRERROR pqStrerror #define SOCK_STRERROR pqStrerror
#define SOCK_ERRNO_SET(e) errno=e #define SOCK_ERRNO_SET(e) (errno = (e))
#endif #endif
#endif /* LIBPQ_INT_H */ #endif /* LIBPQ_INT_H */