diff options
author | 2016-10-22 16:37:12 +0200 | |
---|---|---|
committer | 2016-10-22 16:37:12 +0200 | |
commit | a6bdefec8c76e9878b634119c56438a7673b0385 (patch) | |
tree | 9b435836a12773fe5b84cf1fd04866ecd9ecc2da /src/lib/util/png.cpp | |
parent | 5f3d4fb33da4304e417a0e142e82e3d292646465 (diff) |
more TRUE/FALSE cleanup (nw)
Diffstat (limited to 'src/lib/util/png.cpp')
-rw-r--r-- | src/lib/util/png.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/util/png.cpp b/src/lib/util/png.cpp index d1189d5ffc2..9069348c843 100644 --- a/src/lib/util/png.cpp +++ b/src/lib/util/png.cpp @@ -235,10 +235,10 @@ static png_error read_chunk(util::core_file &fp, uint8_t **data, uint32_t *type, process_chunk - process a PNG chunk -------------------------------------------------*/ -static png_error process_chunk(png_private *png, uint8_t *data, uint32_t type, uint32_t length, int *keepmem) +static png_error process_chunk(png_private *png, uint8_t *data, uint32_t type, uint32_t length, bool *keepmem) { /* default to not keeping memory */ - *keepmem = FALSE; + *keepmem = false; /* switch off of the type */ switch (type) @@ -258,14 +258,14 @@ static png_error process_chunk(png_private *png, uint8_t *data, uint32_t type, u case PNG_CN_PLTE: png->pnginfo->num_palette = length / 3; png->pnginfo->palette = data; - *keepmem = TRUE; + *keepmem = true; break; /* transparency information */ case PNG_CN_tRNS: png->pnginfo->num_trans = length; png->pnginfo->trans = data; - *keepmem = TRUE; + *keepmem = true; break; /* image data */ @@ -281,7 +281,7 @@ static png_error process_chunk(png_private *png, uint8_t *data, uint32_t type, u (*png->idata_next)->length = length; (*png->idata_next)->data = data; png->idata_next = &(*png->idata_next)->next; - *keepmem = TRUE; + *keepmem = true; break; /* gamma */ @@ -318,7 +318,7 @@ static png_error process_chunk(png_private *png, uint8_t *data, uint32_t type, u else pt->next = text; - *keepmem = TRUE; + *keepmem = true; break; } @@ -523,7 +523,7 @@ png_error png_read_file(util::core_file &fp, png_info *pnginfo) for ( ; ; ) { uint32_t chunk_type, chunk_length; - int keepmem; + bool keepmem; /* read a chunk */ error = read_chunk(fp, &chunk_data, &chunk_type, &chunk_length); |