summaryrefslogtreecommitdiff
path: root/src/bin
diff options
context:
space:
mode:
authorNeil Conway2005-07-27 12:44:10 +0000
committerNeil Conway2005-07-27 12:44:10 +0000
commita4c75ece82576b8d124ffdf7580ee6a218b12ccd (patch)
treecbe246fefbb88605414a8eedb627ff3dbd325d6e /src/bin
parentb98b75eb3bf4d1be59e13ce954612c8bab81b08e (diff)
Fix a few macro definitions to ensure that unary minus is enclosed in
parentheses. This avoids possible operator precedence problems, and is consistent with most of the macro definitions in the tree.
Diffstat (limited to 'src/bin')
-rw-r--r--src/bin/pg_dump/pg_backup_archiver.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_dump/pg_backup_archiver.h b/src/bin/pg_dump/pg_backup_archiver.h
index 6d423d682c6..d9a09e32858 100644
--- a/src/bin/pg_dump/pg_backup_archiver.h
+++ b/src/bin/pg_dump/pg_backup_archiver.h
@@ -17,7 +17,7 @@
*
*
* IDENTIFICATION
- * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.h,v 1.65 2005/06/21 20:45:44 tgl Exp $
+ * $PostgreSQL: pgsql/src/bin/pg_dump/pg_backup_archiver.h,v 1.66 2005/07/27 12:44:10 neilc Exp $
*
*-------------------------------------------------------------------------
*/
@@ -49,7 +49,7 @@
#define GZCLOSE(fh) fclose(fh)
#define GZWRITE(p, s, n, fh) (fwrite(p, s, n, fh) * (s))
#define GZREAD(p, s, n, fh) fread(p, s, n, fh)
-#define Z_DEFAULT_COMPRESSION -1
+#define Z_DEFAULT_COMPRESSION (-1)
typedef struct _z_stream
{