comparison OrthancStone/Sources/Toolbox/BucketAccumulator2D.cpp @ 1916:bd527bbc34df

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Sun, 20 Mar 2022 18:23:39 +0100
parents cdf91ad891a5
children 3f88c239043a
comparison
equal deleted inserted replaced
1915:0d1235ca4abc 1916:bd527bbc34df
193 { 193 {
194 fprintf(fp, "%7.2f: ", mapperY_.GetBucketCenter(y)); 194 fprintf(fp, "%7.2f: ", mapperY_.GetBucketCenter(y));
195 195
196 for (size_t x = 0; x < mapperX_.GetSize(); x++) 196 for (size_t x = 0; x < mapperX_.GetSize(); x++)
197 { 197 {
198 fprintf(fp, "%7lu ", GetBucketContentSize(x, y)); 198 fprintf(fp, "%7ld ", GetBucketContentSize(x, y));
199 } 199 }
200 200
201 fprintf(fp, "\n"); 201 fprintf(fp, "\n");
202 } 202 }
203 } 203 }