fix conversion warning

pull/1/head
toddouska 2013-04-24 13:35:28 -07:00
parent 158029752c
commit 477129b53e
1 changed files with 1 additions and 1 deletions

View File

@ -1188,7 +1188,7 @@ void InitX509(CYASSL_X509* x509, int dynamicFlag)
x509->derCert.buffer = NULL; x509->derCert.buffer = NULL;
x509->altNames = NULL; x509->altNames = NULL;
x509->altNamesNext = NULL; x509->altNamesNext = NULL;
x509->dynamicMemory = dynamicFlag; x509->dynamicMemory = (byte)dynamicFlag;
} }