changed deprecated uint32 declaration to uint32_t

This commit is contained in:
Erik Frojdh
2022-01-24 09:01:44 +01:00
parent f95a15c841
commit 02174f79d1
7 changed files with 16 additions and 16 deletions

View File

@ -587,8 +587,8 @@ public:
int nx, ny;
dets[0]->getDetectorSize(nx,ny);
uint32 nnx;
uint32 nny;
uint32_t nnx;
uint32_t nny;
float *gm=ReadFromTiff(imgname, nnx, nny);
if (ped) delete [] ped;
if (nnx>(uint)nx) nx=nnx;