diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2014-10-19 00:45:40 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2014-10-19 00:45:40 -0400 |
commit | 49d182e61ebca00762531718b3bafa9107ccee17 (patch) | |
tree | f0ff313b6f2d3904c682deb25cc53c96109d72b0 /src | |
parent | 6895866510c5f4185f50ae7d6810d9ffd7701a9e (diff) | |
download | postgresql-49d182e61ebca00762531718b3bafa9107ccee17.tar.gz postgresql-49d182e61ebca00762531718b3bafa9107ccee17.zip |
initdb: Fix compiler error in USE_PREFETCH case
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/initdb/initdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index e6c9e480d33..dc1f1df6dd0 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -1288,7 +1288,7 @@ setup_config(void) conflines = replace_token(conflines, "#dynamic_shared_memory_type = posix", repltok); -#if !USE_PREFETCH +#ifndef USE_PREFETCH conflines = replace_token(conflines, "#effective_io_concurrency = 1", "#effective_io_concurrency = 0"); |