imageviewer: add back semicolon

accidentally removed in 3c6b9bb

file isn't normally used, so there was no error

Change-Id: I65cc59bfcb3c59678a990b9804070d518318b016
This commit is contained in:
Christian Soffke 2026-01-30 14:12:57 +01:00
parent 2556cfc7b3
commit 11263d73af

View file

@ -5,7 +5,7 @@ static int fd;
extern int GETC(void)
{
unsigned char x = 0;
rb->read(fd, &x, 1)
rb->read(fd, &x, 1);
return x;
}