spelling fixes for sm3840 backend

merge-requests/540/head
Peter Marschall 2020-08-28 18:55:39 +02:00
rodzic a94c17175f
commit 78dd1892ab
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -996,7 +996,7 @@ fix_endian_short (unsigned short *data, int count)
if (*firstbyte == 255)
return; /* INTC endianness */
DBG (2, "swapping endiannes...\n");
DBG (2, "swapping endianness...\n");
for (i = 0; i < count; i++)
data[i] = ((data[i] >> 8) & 0x00ff) | ((data[i] << 8) & 0xff00);
}