summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@suren.me>2018-10-27 23:55:23 +0200
committerSuren A. Chilingaryan <csa@suren.me>2018-10-27 23:55:23 +0200
commitb454a35ca55e7fbb87439344fcb07042aff9c735 (patch)
treea952989b3216f65b75b7c639e26887ff86bf920e
parent5d818715ae58d1425ec94ea9449bb7bb4247f8bf (diff)
downloadufodecode-hzg20.tar.gz
ufodecode-hzg20.tar.bz2
ufodecode-hzg20.tar.xz
ufodecode-hzg20.zip
Add missing semicolonhzg20
-rw-r--r--src/ufodecode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ufodecode.c b/src/ufodecode.c
index d33a1e5..f3ef9ca 100644
--- a/src/ufodecode.c
+++ b/src/ufodecode.c
@@ -234,7 +234,7 @@ ufo_decode_frame_channels_v6 (UfoDecoder *decoder, uint16_t *pixel_buffer, uint3
{
size_t base = 0;
size_t index = 0;
- const size_t space = IPECAMERA_WIDTH / 8
+ const size_t space = IPECAMERA_WIDTH / 8;
#ifdef HAVE_SSE
const __m64 mask_fff = _mm_set_pi32 (0xfff, 0xfff);