File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -61,15 +61,14 @@ const bbsink_ops bbsink_lz4_ops = {
61
61
bbsink *
62
62
bbsink_lz4_new (bbsink * next , bc_specification * compress )
63
63
{
64
- int compresslevel ;
65
-
66
64
#ifndef USE_LZ4
67
65
ereport (ERROR ,
68
66
(errcode (ERRCODE_FEATURE_NOT_SUPPORTED ),
69
67
errmsg ("lz4 compression is not supported by this build" )));
70
68
return NULL ; /* keep compiler quiet */
71
69
#else
72
70
bbsink_lz4 * sink ;
71
+ int compresslevel ;
73
72
74
73
Assert (next != NULL );
75
74
Original file line number Diff line number Diff line change @@ -60,15 +60,14 @@ const bbsink_ops bbsink_zstd_ops = {
60
60
bbsink *
61
61
bbsink_zstd_new (bbsink * next , bc_specification * compress )
62
62
{
63
- int compresslevel ;
64
-
65
63
#ifndef USE_ZSTD
66
64
ereport (ERROR ,
67
65
(errcode (ERRCODE_FEATURE_NOT_SUPPORTED ),
68
66
errmsg ("zstd compression is not supported by this build" )));
69
67
return NULL ; /* keep compiler quiet */
70
68
#else
71
69
bbsink_zstd * sink ;
70
+ int compresslevel ;
72
71
73
72
Assert (next != NULL );
74
73
You can’t perform that action at this time.
0 commit comments