aboutsummaryrefslogtreecommitdiff
path: root/src/include/nodes/makefuncs.h
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2011-09-11 21:54:32 +0300
committerPeter Eisentraut <peter_e@gmx.net>2011-09-11 21:54:32 +0300
commit1b81c2fe6ee2b26d37610c3d381a87fa17af0a7c (patch)
tree09075f19d47fd81df20beb96e27e0f21ad2a0729 /src/include/nodes/makefuncs.h
parent02bca4f35164dd1873eab9b8e6167e42a79157c4 (diff)
downloadpostgresql-1b81c2fe6ee2b26d37610c3d381a87fa17af0a7c.tar.gz
postgresql-1b81c2fe6ee2b26d37610c3d381a87fa17af0a7c.zip
Remove many -Wcast-qual warnings
This addresses only those cases that are easy to fix by adding or moving a const qualifier or removing an unnecessary cast. There are many more complicated cases remaining.
Diffstat (limited to 'src/include/nodes/makefuncs.h')
-rw-r--r--src/include/nodes/makefuncs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/nodes/makefuncs.h b/src/include/nodes/makefuncs.h
index 61314608f53..532681f8c01 100644
--- a/src/include/nodes/makefuncs.h
+++ b/src/include/nodes/makefuncs.h
@@ -20,7 +20,7 @@
extern A_Expr *makeA_Expr(A_Expr_Kind kind, List *name,
Node *lexpr, Node *rexpr, int location);
-extern A_Expr *makeSimpleA_Expr(A_Expr_Kind kind, const char *name,
+extern A_Expr *makeSimpleA_Expr(A_Expr_Kind kind, char *name,
Node *lexpr, Node *rexpr, int location);
extern Var *makeVar(Index varno,