Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
edhartnett committed May 4, 2018
1 parent c3b9d9d commit 1ec8fea
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/clib/pio_darray.c
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,7 @@ pio_inq_var_fill_expected(int ncid, int varid, int pio_type, PIO_Offset type_siz
case PIO_DOUBLE:
memcpy(fillvalue, &double_fill_value, type_size);
break;
#ifdef _NETCDF4
case PIO_UBYTE:
memcpy(fillvalue, &ubyte_fill_value, type_size);
break;
Expand All @@ -460,6 +461,9 @@ pio_inq_var_fill_expected(int ncid, int varid, int pio_type, PIO_Offset type_siz
case PIO_STRING:
memcpy(fillvalue, string_fill_value, type_size);
break;
#endif /* _NETCDF4 */
default:
return PIO_EBADTYPE;
}
}

Expand Down

0 comments on commit 1ec8fea

Please sign in to comment.