Skip to content

Commit

Permalink
Fix printf precision
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexisTM committed Jun 5, 2024
1 parent 1292f10 commit c969d6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/group_param_usage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ int main() {
printf("curve: ");
auto& motor_curve = car.motor_curve.get_ref();
for(int i = 0; i < motor_curve.size(); i++) {
printf("%ld ", motor_curve[i]);
printf("%d ", motor_curve[i]);
}
printf("\n");

Expand Down

0 comments on commit c969d6d

Please sign in to comment.