Cleared conversion warning under MSVC

pull/356/head
Jeffrey Walton 2016-12-30 15:58:01 -05:00
parent 0774818052
commit 1fe0cc869b
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 2 additions and 2 deletions

View File

@ -80,11 +80,11 @@ bool RunASN1TestSet(const ASN1_TestTuple asnTuples[], size_t count)
break; break;
case UTF8_STRING: case PRINTABLE_STRING: case IA5_STRING: case UTF8_STRING: case PRINTABLE_STRING: case IA5_STRING:
BERDecodeTextString(as1, unused2, tag); BERDecodeTextString(as1, unused2, (byte)tag);
break; break;
default: default:
BERGeneralDecoder(as1, tag); BERGeneralDecoder(as1, (byte)tag);
break; break;
} }