diff options
Diffstat (limited to 'src/bin/psql/mainloop.c')
-rw-r--r-- | src/bin/psql/mainloop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/mainloop.c b/src/bin/psql/mainloop.c index c24e38d988c..4cf5603353d 100644 --- a/src/bin/psql/mainloop.c +++ b/src/bin/psql/mainloop.c @@ -69,7 +69,7 @@ MainLoop(FILE *source) /* Create working state */ scan_state = psql_scan_create(&psqlscan_callbacks); cond_stack = conditional_stack_create(); - psql_scan_set_passthrough(scan_state, (void *) cond_stack); + psql_scan_set_passthrough(scan_state, cond_stack); query_buf = createPQExpBuffer(); previous_buf = createPQExpBuffer(); |