From 1b81c2fe6ee2b26d37610c3d381a87fa17af0a7c Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sun, 11 Sep 2011 21:54:32 +0300 Subject: 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. --- src/include/nodes/makefuncs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/include/nodes/makefuncs.h') 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, -- cgit v1.2.3