mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-21 21:21:22 +08:00
Fix gapfill function signature
Very recent compilers will warn about function pointers with empty argument list. While currently in C func() means a function with an unspecified argument list the next version of the C standard will change this to mean func(void).
This commit is contained in:
parent
db66a194b2
commit
7508d66639
@ -199,7 +199,8 @@ static CustomPathMethods gapfill_path_methods = {
|
||||
};
|
||||
|
||||
static bool
|
||||
gapfill_expression_walker(Expr *node, bool (*walker)(), gapfill_walker_context *context)
|
||||
gapfill_expression_walker(Expr *node, bool (*walker)(Node *, gapfill_walker_context *),
|
||||
gapfill_walker_context *context)
|
||||
{
|
||||
context->count = 0;
|
||||
context->call.node = NULL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user