tests: fix %d->%ld (#76)

This commit is contained in:
Drewry Pope 2025-01-20 10:38:36 -06:00 committed by GitHub
parent 69270ba8f0
commit 3219b31128
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}
}