mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
20 lines
821 B
Plaintext
20 lines
821 B
Plaintext
*** src/readJPEG.c.bak Thu Jun 27 02:57:16 1996
|
|
--- src/readJPEG.c Sat Aug 3 14:04:36 1996
|
|
***************
|
|
*** 127,133 ****
|
|
fprintf(stderr,"cinfo.actual_number_of_colors=%d\n",cinfo.actual_number_of_colors);
|
|
fprintf(stderr,"colrs[0].red=%d colrs[99].red=%d\n",colrs[0].red,colrs[99].red);
|
|
fprintf(stderr,"cinfo.colormap[0][0]=%d\n",cinfo.colormap[0][0]);
|
|
! {char dummy[80]; fprintf(stderr,"RETURN\n"); gets(dummy);}
|
|
}
|
|
#endif
|
|
|
|
--- 127,133 ----
|
|
fprintf(stderr,"cinfo.actual_number_of_colors=%d\n",cinfo.actual_number_of_colors);
|
|
fprintf(stderr,"colrs[0].red=%d colrs[99].red=%d\n",colrs[0].red,colrs[99].red);
|
|
fprintf(stderr,"cinfo.colormap[0][0]=%d\n",cinfo.colormap[0][0]);
|
|
! {char dummy[80]; fprintf(stderr,"RETURN\n"); fgets(dummy, sizeof(dummy), stdin);}
|
|
}
|
|
#endif
|
|
|