drivers/sensor: delete warning about argument type in bmi160

Remove warning due to variable type difference in format.
This commit is contained in:
SPRESENSE
2024-01-11 18:32:00 +09:00
committed by Xiang Xiao
parent 708ae8e8d8
commit ea5210bd40
+1 -1
View File
@@ -147,7 +147,7 @@ static ssize_t bmi160_read(FAR struct file *filep, FAR char *buffer,
if (len < sizeof(struct accel_gyro_st_s))
{
snerr("Expected buffer size is %lu\n", sizeof(struct accel_gyro_st_s));
snerr("Expected buffer size is %u\n", sizeof(struct accel_gyro_st_s));
return 0;
}