Skip to content

Commit

Permalink
now builds with logging
Browse files Browse the repository at this point in the history
  • Loading branch information
edhartnett committed Jul 5, 2019
1 parent f8c9710 commit 20bd34f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/clib/pio_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ PIOc_openfile(int iosysid, int *ncidp, int *iotype, const char *filename,
{
PLOG((1, "PIOc_openfile iosysid %d *iotype %d filename %s mode %d", iosysid,
iotype ? *iotype: 0, filename, mode));
return PIOc_openfile_retry(iosysid, ncidp, iotype, filename, mode, 1);
return PIOc_openfile_retry(iosysid, ncidp, iotype, filename, mode, 1, 0);
}

/**
Expand Down Expand Up @@ -85,7 +85,7 @@ PIOc_openfile2(int iosysid, int *ncidp, int *iotype, const char *filename,
{
PLOG((1, "PIOc_openfile2 iosysid %d *iotype %d filename %s mode %d", iosysid,
iotype ? *iotype : 0, filename, mode));
return PIOc_openfile_retry(iosysid, ncidp, iotype, filename, mode, 0);
return PIOc_openfile_retry(iosysid, ncidp, iotype, filename, mode, 0, 0);
}

/**
Expand Down

0 comments on commit 20bd34f

Please sign in to comment.