Skip to content

Commit 3f88fac

Browse files
Martin Dummermadmartin
Martin Dummer
authored andcommitted
fix gcc-11 compile errors
1 parent 9e89d77 commit 3f88fac

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

noad.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1587,7 +1587,7 @@ int scanRecord( int iNumFrames, cMarks *_marks )
15871587
#ifndef VNOAD
15881588
// open the record
15891589
cfn = new cFileName(filename, false, false, isPES);
1590-
if( cfn->Open() < 0 )
1590+
if( cfn->Open() == NULL )
15911591
{
15921592
delete cfn;
15931593
delete cIF;

noaddata.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ void noadData::setYUVGreyCorners()
361361
int topend = m_nBorderYTop+m_nSizeY;
362362
int bottStart = m_nGrabHeight-m_nBorderYBot-m_nSizeY;
363363
int bottEnd = m_nGrabHeight-m_nBorderYBot;
364-
register int linestart;
364+
int linestart;
365365
int rightLogoOffset = m_nGrabWidth-m_nBorderX-m_nSizeX;
366366
uint8_t *bufstart = nyuvbuf->buf[0];
367367
int linewidth0 = nyuvbuf->linewidth[0];
@@ -1047,10 +1047,10 @@ void noadData::getHistogram(simpleHistogram &dest)
10471047
{
10481048
unsigned char *frame_ptr = (unsigned char *)nyuvbuf->buf[0];
10491049
memset(dest, 0, sizeof(simpleHistogram));
1050-
for(register int y = 0; y < m_nGrabHeight; y += 2 )
1050+
for(int y = 0; y < m_nGrabHeight; y += 2 )
10511051
{
10521052
int linestart = y * nyuvbuf->linewidth[0];
1053-
for(register int x = 0; x < m_nGrabWidth; x += 2 )
1053+
for(int x = 0; x < m_nGrabWidth; x += 2 )
10541054
dest[frame_ptr[linestart + x]]++;
10551055
}
10561056
}
@@ -1059,7 +1059,7 @@ bool noadData::areSimilar(simpleHistogram &hist1,simpleHistogram &hist2)
10591059
{
10601060
long similar = 0;
10611061

1062-
for(register int i = 0; i < 256; i++)
1062+
for(int i = 0; i < 256; i++)
10631063
{
10641064
if (hist1[i] < hist2[i])
10651065
similar += hist1[i];

showindex.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ int doShowIndex(const char * filename)
3333
cfn = new cFileName(filename, false, false, isPES);
3434
//cfn = new cFileName(filename, false);
3535
fprintf(stdout,"try to open %s\n",cfn->Name());
36-
if( cfn->Open() < 0 )
36+
if( cfn->Open() == NULL )
3737
{
3838
fprintf(stdout,"opening %s failed\n",cfn->Name());
3939
delete cIF;

tnoad.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ int doOnlineScan(noadData *thedata, const char *fName, cMarks *_marks )
422422
#ifndef VNOAD
423423
// open the record
424424
cfn = new cFileName(filename, false, false, isPES );
425-
if( cfn->Open() < 0 )
425+
if( cfn->Open() == NULL )
426426
{
427427
delete cfn;
428428
delete cIF;

tools.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ void writechar(int filedes, char c)
7272
char *readline(FILE *f)
7373
{
7474
static char buffer[MAXPARSEBUFFER];
75-
if (fgets(buffer, sizeof(buffer), f) > 0)
75+
if (fgets(buffer, sizeof(buffer), f) != NULL)
7676
{
7777
int l = strlen(buffer) - 1;
7878
if (l >= 0 && buffer[l] == '\n')

vdr_cl.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ cUnbufferedFile *cFileName::SetOffset(int Number, off_t Offset)
173173
}
174174
// found a non existing file suffix
175175
}
176-
if (Open() >= 0) {
176+
if (Open() != NULL) {
177177
if (!record && Offset >= 0 && file && file->Seek(Offset, SEEK_SET) != Offset) {
178178
LOG_ERROR_STR(fileName);
179179
return NULL;
@@ -663,7 +663,7 @@ cNoadIndexFile::~cNoadIndexFile()
663663

664664
bool cNoadIndexFile::Get(int Index, uint16_t *FileNumber, off_t *FileOffset, bool *Independent, int *Length)
665665
{
666-
if (index >= 0)
666+
if (index != NULL)
667667
{
668668
if (Index >= 0 && Index < last)
669669
{
@@ -2128,7 +2128,7 @@ char *cReadLine::Read(FILE *f)
21282128
{
21292129
static char buffer[MAXPARSEBUFFER];
21302130
char *cp = fgets(buffer, sizeof(buffer), f);
2131-
if (cp > 0)
2131+
if (cp != NULL)
21322132
{
21332133
int n = strlen(cp);
21342134
if (buffer[n] == '\n')

0 commit comments

Comments
 (0)