mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-01-30 19:04:51 +00:00
Fix warnings
This commit is contained in:
parent
ff4938702e
commit
d0bd3987e1
@ -1596,9 +1596,9 @@ Gnuplot& Gnuplot::plot_image(const unsigned char * ucPicBuf,
|
|||||||
// write the data to file
|
// write the data to file
|
||||||
//
|
//
|
||||||
int iIndex = 0;
|
int iIndex = 0;
|
||||||
for(int iRow = 0; iRow < iHeight; iRow++)
|
for(unsigned int iRow = 0; iRow < iHeight; iRow++)
|
||||||
{
|
{
|
||||||
for(int iColumn = 0; iColumn < iWidth; iColumn++)
|
for(unsigned int iColumn = 0; iColumn < iWidth; iColumn++)
|
||||||
{
|
{
|
||||||
tmp << iColumn << " " << iRow << " "
|
tmp << iColumn << " " << iRow << " "
|
||||||
<< static_cast<float>(ucPicBuf[iIndex++]) << std::endl;
|
<< static_cast<float>(ucPicBuf[iIndex++]) << std::endl;
|
||||||
|
Loading…
Reference in New Issue
Block a user