Mark unused vars as comment

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@104 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
mws
2009-12-21 16:23:09 +00:00
parent 7b87012631
commit 1b13da2617
87 changed files with 1685 additions and 1684 deletions

View File

@@ -149,7 +149,7 @@ int dvbsub_close()
static cDemux * dmx;
void* reader_thread(void *arg)
void* reader_thread(void */*arg*/)
{
uint8_t tmp[16]; /* actually 6 should be enough */
int count;
@@ -203,7 +203,7 @@ void* reader_thread(void *arg)
count += len;
tosync += len;
continue;
}
}
tmp[0] = tmp[1];
tmp[1] = tmp[2];
count = 2;
@@ -222,7 +222,7 @@ void* reader_thread(void *arg)
}
}
packlen = getbits(tmp, 4*8, 16) + 6;
packlen = getbits(tmp, 4*8, 16) + 6;
buf = new uint8_t[packlen];
@@ -265,7 +265,7 @@ void* reader_thread(void *arg)
pthread_exit(NULL);
}
void* dvbsub_thread(void* arg)
void* dvbsub_thread(void* /*arg*/)
{
struct timespec restartWait;
struct timeval now;