Skip to content

Commit

Permalink
Use correct format specifier (#743)
Browse files Browse the repository at this point in the history
  • Loading branch information
hadley committed Nov 29, 2023
1 parent 8d180fe commit 69543e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DfReader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ class DfReader {
label_set.add(haven_double_value(value), label_s);
break;
default:
Rf_warning("Unsupported label type: %s", value.type);
Rf_warning("Unsupported label type: %i", value.type);
}
}

Expand Down

0 comments on commit 69543e5

Please sign in to comment.