pull/26/head
alanbjohnston 7 years ago committed by GitHub
parent e47f058aac
commit f3bbad67bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -454,7 +454,7 @@ return 0;
int encodeA(uint8_t *b, int index, int val) {
printf("Encoding A\n");
b[index] = (val & 0xff);
b[index + 1] = str[index + 1] | (val >> 8);
b[index + 1] = b[index + 1] | (val >> 8);
return 0;
}

Loading…
Cancel
Save

Powered by TurnKey Linux.