Skip to content

Commit

Permalink
Use consistent/modern code formatting for dbl ptrs
Browse files Browse the repository at this point in the history
  • Loading branch information
dcommander committed Feb 19, 2016
1 parent d4be423 commit f76c01d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion jchuff.c
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ start_pass_huff (j_compress_ptr cinfo, boolean gather_statistics)

GLOBAL(void)
jpeg_make_c_derived_tbl (j_compress_ptr cinfo, boolean isDC, int tblno,
c_derived_tbl ** pdtbl)
c_derived_tbl **pdtbl)
{
JHUFF_TBL *htbl;
c_derived_tbl *dtbl;
Expand Down
2 changes: 1 addition & 1 deletion jcparam.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jpeg_add_quant_table (j_compress_ptr cinfo, int which_tbl,
* are limited to 1..255 for JPEG baseline compatibility.
*/
{
JQUANT_TBL ** qtblptr;
JQUANT_TBL **qtblptr;
int i;
long temp;

Expand Down
2 changes: 1 addition & 1 deletion jctrans.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ GLOBAL(void)
jpeg_copy_critical_parameters (j_decompress_ptr srcinfo,
j_compress_ptr dstinfo)
{
JQUANT_TBL ** qtblptr;
JQUANT_TBL **qtblptr;
jpeg_component_info *incomp, *outcomp;
JQUANT_TBL *c_quant, *slot_quant;
int tblno, ci, coefi;
Expand Down
2 changes: 1 addition & 1 deletion jdhuff.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ start_pass_huff_decoder (j_decompress_ptr cinfo)

GLOBAL(void)
jpeg_make_d_derived_tbl (j_decompress_ptr cinfo, boolean isDC, int tblno,
d_derived_tbl ** pdtbl)
d_derived_tbl **pdtbl)
{
JHUFF_TBL *htbl;
d_derived_tbl *dtbl;
Expand Down
2 changes: 1 addition & 1 deletion rdrle.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ typedef struct _rle_source_struct {
jvirt_sarray_ptr image; /* virtual array to hold the image */
JDIMENSION row; /* current row # in the virtual array */
rle_hdr header; /* Input file information */
rle_pixel** rle_row; /* holds a row returned by rle_getrow() */
rle_pixel **rle_row; /* holds a row returned by rle_getrow() */

} rle_source_struct;

Expand Down

0 comments on commit f76c01d

Please sign in to comment.