Skip to content

Commit

Permalink
fixed bug
Browse files Browse the repository at this point in the history
  • Loading branch information
edhartnett committed Jan 30, 2019
1 parent 130c564 commit 85637da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clib/pio_getput_int.c
Original file line number Diff line number Diff line change
Expand Up @@ -896,6 +896,7 @@ int PIOc_put_vars_tc(int ncid, int varid, const PIO_Offset *start, const PIO_Off
char count_present = count ? true : false; /* Is count non-NULL? */
char stride_present = stride ? true : false; /* Is stride non-NULL? */
nc_type vartype; /* The type of the var we are reading from. */
PIO_Offset *fake_stride;
int mpierr = MPI_SUCCESS, mpierr2; /* Return code from MPI function codes. */
int ierr; /* Return code from function calls. */

Expand Down Expand Up @@ -1065,7 +1066,6 @@ int PIOc_put_vars_tc(int ncid, int varid, const PIO_Offset *start, const PIO_Off
else
{
/* This is not a scalar var. */
PIO_Offset *fake_stride;
var_desc_t *vdesc;
int *request;

Expand Down

0 comments on commit 85637da

Please sign in to comment.