cosmetic change

This commit is contained in:
tth 2019-09-09 17:58:10 +02:00
parent f109077b50
commit a7392df682
1 changed files with 4 additions and 4 deletions

View File

@ -64,12 +64,12 @@ if( ! fimg_type_is_valid(head->type) ) {
return -1;
}
printf(" type %d %s\n", head->type, fimg_str_type(head->type));
printf(" dims %d x %d\n",
printf(" type %d %s\n", head->type, fimg_str_type(head->type));
printf(" dims %d x %d\n",
head->width, head->height);
printf(" fval/count %f %d\n", head->fval, head->count);
printf(" fval/count %f %d\n", head->fval, head->count);
printf(" pixels@ %p %p %p %p\n",
printf(" pixels@ %p %p %p %p\n",
head->R, head->G, head->B, head->A);
return 0;