We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8eb54f8 commit ae5a967Copy full SHA for ae5a967
platforms/unix/plugins/CameraPlugin/sqCamera-linux.c
@@ -318,7 +318,7 @@ convertImageRGB24toARGB32 (camPtr cam)
318
return;
319
320
while (--pixelCount >= 0) {
321
- *dst++ = 0xFF000000 | (*src[0] << 16) | (*src[1] << 8) | *src[2];
+ *dst++ = 0xFF000000 | (src[0] << 16) | (src[1] << 8) | src[2];
322
src += 3;
323
}
324
0 commit comments