kbd_helper fix yellow

Change-Id: Ib54b36760678e88d3857ba70b0f4d1e1661bb0ad
This commit is contained in:
William Wilgus 2020-07-27 23:24:49 -04:00
parent 9e2eceeb33
commit 7f27d2dd52

View file

@ -40,7 +40,7 @@ int kbd_create_layout(char *layout, unsigned short *buf, int bufsz)
const unsigned char *p = layout;
int len = 0;
pbuf = buf;
while (*p && (pbuf - buf + sizeof(unsigned short)) < bufsz)
while (*p && (pbuf - buf + (ptrdiff_t) sizeof(unsigned short)) < bufsz)
{
p = rb->utf8decode(p, &pbuf[len+1]);
if (pbuf[len+1] == '\n')