byte warning casts

pull/1/head
toddouska 2012-06-01 14:37:39 -07:00
parent 7edd1bd843
commit 8a52cd3780
1 changed files with 1 additions and 1 deletions

View File

@ -4673,7 +4673,7 @@ int SetCipherList(Suites* s, const char* list)
/* precede export with 1 byte length */
ret = ecc_export_x963(&myKey, encSecret + 1, &size);
encSecret[0] = size;
encSecret[0] = (byte)size;
encSz = size + 1;
if (ret != 0)