X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=src%2Fthreadraster.cpp;h=9853117a3755abaf40efc92ca3000b0e7bf43f9f;hb=e98a8a9d72a7b919debbbc9d1b0f237fe71c0fb3;hp=837a22fb844a452a4426b1e058a1504893a51995;hpb=edd35e8663bc7abd7b8a02b5cc5ec169a5edc0ac;p=ctsim.git diff --git a/src/threadraster.cpp b/src/threadraster.cpp index 837a22f..9853117 100644 --- a/src/threadraster.cpp +++ b/src/threadraster.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (C) 1983-2001 Kevin Rosenberg ** -** $Id: threadraster.cpp,v 1.6 2001/03/04 04:27:55 kevin Exp $ +** $Id: threadraster.cpp,v 1.7 2001/03/04 04:30:45 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -109,7 +109,7 @@ RasterizerSupervisor::RasterizerSupervisor (SupervisorThread* pThread, PhantomFi m_iNX(iNX), m_iNY(iNY), m_iNSample(iNSample), m_dViewRatio(dViewRatio), m_pszLabel(pszLabel) { m_vecpChildImageFiles.reserve (getNumWorkers()); - for (unsigned int iThread = 0; iThread < getNumWorkers(); iThread++) { + for (int iThread = 0; iThread < getNumWorkers(); iThread++) { m_vecpChildImageFiles[iThread] = new ImageFile; } @@ -167,7 +167,7 @@ RasterizerSupervisor::getImageFile() int iGlobalCol = 0; for (int iw = 0; iw < getNumWorkers(); iw++) { ImageFileArray childArray = m_vecpChildImageFiles[iw]->getArray(); - for (int iCol = 0; iCol < m_vecpChildImageFiles[iw]->nx(); iCol++) { + for (unsigned int iCol = 0; iCol < m_vecpChildImageFiles[iw]->nx(); iCol++) { memcpy (globalArray[iGlobalCol++], childArray[iCol], iColSize); } }