aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2001-10-19 15:38:57 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2001-10-19 15:38:57 +0000
commit3d510653a4fab918451083b83ad4b667406ccda4 (patch)
treea13e964c1796a86df67e7ffef90e4b80c04b8503
parent2e65523f4f43352e6f5f7499a15495b6c2a6f41f (diff)
downloadpostgresql-3d510653a4fab918451083b83ad4b667406ccda4.tar.gz
postgresql-3d510653a4fab918451083b83ad4b667406ccda4.zip
Rename macro arg to avoid useless compiler warning when building plperl.
-rw-r--r--src/include/c.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/c.h b/src/include/c.h
index c299d7761cb..58e522a5e70 100644
--- a/src/include/c.h
+++ b/src/include/c.h
@@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: c.h,v 1.103 2001/10/18 22:40:52 tgl Exp $
+ * $Id: c.h,v 1.104 2001/10/19 15:38:57 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -126,7 +126,7 @@
#endif
#ifndef __GNUC__
-#define __attribute__(x)
+#define __attribute__(_arg_)
#endif
/* ----------------------------------------------------------------