Fix a possible uninitialized variable in pio_perf (#2461)

This commit is contained in:
Dana Robinson 2023-02-13 08:10:47 -08:00 committed by GitHub
parent c240856c8a
commit 02b93cad26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -311,7 +311,7 @@ run_test_loop(struct options *opts)
{
parameters parms;
int num_procs;
int doing_pio; /* if this process is doing PIO */
int doing_pio = 0; /* if this process is doing parallel IO */
parms.num_files = opts->num_files;
parms.num_dsets = opts->num_dsets;