Skip to content

Commit

Permalink
#1355 Corretced NC_BYTE value
Browse files Browse the repository at this point in the history
  • Loading branch information
hsoh-u committed Nov 17, 2020
1 parent 5e3df87 commit c06dd03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion met/src/libcode/vx_nc_util/nc_utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1123,7 +1123,7 @@ double get_nc_time(NcVar * var, const int index) {
break;
case NC_BYTE:
var->getVar(start, count, &vb);
k = (double)vs;
k = (double)vb;
break;
case NC_INT:
var->getVar(start, count, &vi);
Expand Down

0 comments on commit c06dd03

Please sign in to comment.