Skip to content
Snippets Groups Projects
Commit 7bd9c41e authored by Emmanuel Lepage Vallee's avatar Emmanuel Lepage Vallee
Browse files

Fix doc PDF generation, bump version to 1.2.2

parent b0b16cca
Branches
Tags
No related merge requests found
......@@ -168,7 +168,7 @@ void VideoRenderer::stopShm()
///Resize the shared memory
bool VideoRenderer::resizeShm()
{
while ((sizeof(SHMHeader) + m_pShmArea->m_BufferSize) > m_ShmAreaLen) {
while (( (unsigned int) sizeof(SHMHeader) + (unsigned int) m_pShmArea->m_BufferSize) > (unsigned int) m_ShmAreaLen) {
const size_t new_size = sizeof(SHMHeader) + m_pShmArea->m_BufferSize;
shmUnlock();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment