File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ writeBackupCatalogConfig(FILE *out, pgBackupConfig *config)
129
129
if (config -> master_user )
130
130
fprintf (out , "master-user = %s\n" , config -> master_user );
131
131
if (config -> replica_timeout != INT_MIN )
132
- fprintf (out , "replica_timeout = %u \n" , config -> replica_timeout );
132
+ fprintf (out , "replica_timeout = %d \n" , config -> replica_timeout );
133
133
134
134
fprintf (out , "#Logging parameters:\n" );
135
135
if (config -> log_level != INT_MIN )
@@ -154,7 +154,7 @@ writeBackupCatalogConfig(FILE *out, pgBackupConfig *config)
154
154
fprintf (out , "#Compression parameters:\n" );
155
155
156
156
fprintf (out , "compress-algorithm = %s\n" , deparse_compress_alg (config -> compress_alg ));
157
- fprintf (out , "compress-level = %u \n" , config -> compress_level );
157
+ fprintf (out , "compress-level = %d \n" , config -> compress_level );
158
158
}
159
159
160
160
void
You can’t perform that action at this time.
0 commit comments