@@ -158,14 +158,14 @@ uint32_t listTagsNotFollowPasscountRules[] = {
158
158
int check_tag_definitions (void );
159
159
int write_test_tiff (TIFF * tif , const char * filenameRead );
160
160
int write_all_tags (TIFF * tif , const TIFFFieldArray * tFieldArray ,
161
- uint32_t * listTagsNotToWrite , uint32_t nTagsInList ,
161
+ uint32_t * plistTagsNotToWrite , uint32_t nTagsInList ,
162
162
uint32_t * iCnt );
163
163
int tagIsInList (uint32_t tTag , uint32_t * list , uint32_t nTagsInList );
164
164
int testPasscountFlag (const char * szMsg , const TIFFFieldArray * tFieldArray ,
165
- uint32_t * listTagsNotFollowPasscountRules ,
165
+ uint32_t * plistTagsNotFollowPasscountRules ,
166
166
uint32_t nTagsInList );
167
167
int read_all_tags (TIFF * tif , const TIFFFieldArray * tFieldArray ,
168
- uint32_t * listTagsNotToWrite , uint32_t nTagsNotToWrite ,
168
+ uint32_t * plistTagsNotToWrite , uint32_t nTagsNotToWrite ,
169
169
uint32_t * iCnt );
170
170
171
171
/* ==== main() ========================================================
@@ -686,7 +686,7 @@ int write_test_tiff(TIFF *tif, const char *filenameRead)
686
686
*
687
687
*/
688
688
int testPasscountFlag (const char * szMsg , const TIFFFieldArray * tFieldArray ,
689
- uint32_t * listTagsNotFollowPasscountRules ,
689
+ uint32_t * plistTagsNotFollowPasscountRules ,
690
690
uint32_t nTagsInList )
691
691
{
692
692
uint32_t t ;
@@ -699,7 +699,7 @@ int testPasscountFlag(const char *szMsg, const TIFFFieldArray *tFieldArray,
699
699
for (t = 0 ; t < nTags ; t ++ )
700
700
{
701
701
if (tagIsInList (tFieldArray -> fields [t ].field_tag ,
702
- listTagsNotFollowPasscountRules , nTagsInList ))
702
+ plistTagsNotFollowPasscountRules , nTagsInList ))
703
703
continue ;
704
704
705
705
if (tFieldArray -> fields [t ].field_writecount !=
@@ -728,7 +728,7 @@ int testPasscountFlag(const char *szMsg, const TIFFFieldArray *tFieldArray,
728
728
for (t = 0 ; t < nTags ; t ++ )
729
729
{
730
730
if (tagIsInList (tFieldArray -> fields [t ].field_tag ,
731
- listTagsNotFollowPasscountRules , nTagsInList ))
731
+ plistTagsNotFollowPasscountRules , nTagsInList ))
732
732
continue ;
733
733
734
734
if (tFieldArray -> fields [t ].field_writecount < 0 )
@@ -828,7 +828,7 @@ int testPasscountFlag(const char *szMsg, const TIFFFieldArray *tFieldArray,
828
828
for (t = 0 ; t < nTags ; t ++ )
829
829
{
830
830
if (tagIsInList (tFieldArray -> fields [t ].field_tag ,
831
- listTagsNotFollowPasscountRules , nTagsInList ))
831
+ plistTagsNotFollowPasscountRules , nTagsInList ))
832
832
continue ;
833
833
834
834
/* TIFF_SETGET_UNDEFINED tags FIELD_IGNORE tags are not written to file.
@@ -935,7 +935,7 @@ int testPasscountFlag(const char *szMsg, const TIFFFieldArray *tFieldArray,
935
935
* iCnt is an index into predefined arrays for the values to write.
936
936
*/
937
937
int write_all_tags (TIFF * tif , const TIFFFieldArray * tFieldArray ,
938
- uint32_t * listTagsNotToWrite , uint32_t nTagsInList ,
938
+ uint32_t * plistTagsNotToWrite , uint32_t nTagsInList ,
939
939
uint32_t * iCnt )
940
940
{
941
941
@@ -950,7 +950,7 @@ int write_all_tags(TIFF *tif, const TIFFFieldArray *tFieldArray,
950
950
uint32_t variableArrayCount = VARIABLE_ARRAY_SIZE ;
951
951
952
952
uint32_t tTag = tFieldArray -> fields [t ].field_tag ;
953
- if (tagIsInList (tTag , listTagsNotToWrite , nTagsInList ))
953
+ if (tagIsInList (tTag , plistTagsNotToWrite , nTagsInList ))
954
954
continue ;
955
955
956
956
TIFFDataType tType =
@@ -1271,7 +1271,7 @@ int tagIsInList(uint32_t tTag, uint32_t *list, uint32_t nTagsInList)
1271
1271
* The read values are compared to the written ones.
1272
1272
*/
1273
1273
int read_all_tags (TIFF * tif , const TIFFFieldArray * tFieldArray ,
1274
- uint32_t * listTagsNotToWrite , uint32_t nTagsNotToWrite ,
1274
+ uint32_t * plistTagsNotToWrite , uint32_t nTagsNotToWrite ,
1275
1275
uint32_t * iCnt )
1276
1276
{
1277
1277
@@ -1315,7 +1315,7 @@ int read_all_tags(TIFF *tif, const TIFFFieldArray *tFieldArray,
1315
1315
tFieldArray -> fields [t ]
1316
1316
.set_field_type ; /* e.g. TIFF_SETGET_C0_FLOAT */
1317
1317
char * tFieldName = tFieldArray -> fields [t ].field_name ;
1318
- if (tagIsInList (tTag , listTagsNotToWrite , nTagsNotToWrite ))
1318
+ if (tagIsInList (tTag , plistTagsNotToWrite , nTagsNotToWrite ))
1319
1319
continue ;
1320
1320
1321
1321
/*-- dependent on set_field_type read value --*/
0 commit comments