aboutsummaryrefslogtreecommitdiff
path: root/jcomapi.c
diff options
context:
space:
mode:
Diffstat (limited to 'jcomapi.c')
-rw-r--r--jcomapi.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/jcomapi.c b/jcomapi.c
index 9b1fa756..4ca20428 100644
--- a/jcomapi.c
+++ b/jcomapi.c
@@ -72,8 +72,8 @@ jpeg_destroy (j_common_ptr cinfo)
/* NB: mem pointer is NULL if memory mgr failed to initialize. */
if (cinfo->mem != NULL)
(*cinfo->mem->self_destruct) (cinfo);
- cinfo->mem = NULL; /* be safe if jpeg_destroy is called twice */
- cinfo->global_state = 0; /* mark it destroyed */
+ cinfo->mem = NULL; /* be safe if jpeg_destroy is called twice */
+ cinfo->global_state = 0; /* mark it destroyed */
}
@@ -89,7 +89,7 @@ jpeg_alloc_quant_table (j_common_ptr cinfo)
tbl = (JQUANT_TBL *)
(*cinfo->mem->alloc_small) (cinfo, JPOOL_PERMANENT, SIZEOF(JQUANT_TBL));
- tbl->sent_table = FALSE; /* make sure this is false in any new table */
+ tbl->sent_table = FALSE; /* make sure this is false in any new table */
return tbl;
}
@@ -101,6 +101,6 @@ jpeg_alloc_huff_table (j_common_ptr cinfo)
tbl = (JHUFF_TBL *)
(*cinfo->mem->alloc_small) (cinfo, JPOOL_PERMANENT, SIZEOF(JHUFF_TBL));
- tbl->sent_table = FALSE; /* make sure this is false in any new table */
+ tbl->sent_table = FALSE; /* make sure this is false in any new table */
return tbl;
}