mirror of
https://github.com/hyprwm/hyprcursor.git
synced 2025-01-27 01:09:48 +01:00
tests: fix %d->%ld (#76)
This commit is contained in:
parent
69270ba8f0
commit
3219b31128
1 changed files with 3 additions and 3 deletions
|
@ -43,10 +43,10 @@ int main(int argc, char** argv) {
|
|||
return 1;
|
||||
}
|
||||
|
||||
printf("left_ptr images: %d\n", shapeData->len);
|
||||
printf("left_ptr images: %ld\n", shapeData->len);
|
||||
|
||||
for (size_t i = 0; i < shapeData->len; ++i) {
|
||||
printf("left_ptr image size: %d\n", shapeData->images[i].len);
|
||||
printf("left_ptr image size: %ld\n", shapeData->images[i].len);
|
||||
}
|
||||
|
||||
hyprcursor_raw_shape_data_free(shapeData);
|
||||
|
@ -76,4 +76,4 @@ int main(int argc, char** argv) {
|
|||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue