This commit is contained in:
2019-09-13 14:34:56 +02:00
parent 9b18958ee8
commit c3f5419745
3 changed files with 11 additions and 8 deletions

View File

@@ -16,13 +16,13 @@ extern int verbosity;
static void print_struct_pam(struct pam *ppam, char *txt)
{
printf("size %d\n", ppam->size);
printf(" size %d\n", ppam->size);
printf("format %d\n", ppam->format);
printf("plainformat %d\n", ppam->plainformat);
printf("width & height %d %d\n", ppam->width, ppam->height);
printf("depth %d\n", ppam->depth);
printf("maxval %lu\n", ppam->maxval);
printf(" format %d\n", ppam->format);
printf(" plainformat %d\n", ppam->plainformat);
printf(" width & height %d %d\n", ppam->width, ppam->height);
printf(" depth %d\n", ppam->depth);
printf(" maxval %lu\n", ppam->maxval);
}
/* --------------------------------------------------------------------- */