Skip to content

Commit

Permalink
Cleared conversion warning under MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
noloader committed Dec 30, 2016
1 parent 0774818 commit 1fe0cc8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions validat0.cpp
Expand Up @@ -80,11 +80,11 @@ bool RunASN1TestSet(const ASN1_TestTuple asnTuples[], size_t count)
break;

case UTF8_STRING: case PRINTABLE_STRING: case IA5_STRING:
BERDecodeTextString(as1, unused2, tag);
BERDecodeTextString(as1, unused2, (byte)tag);
break;

default:
BERGeneralDecoder(as1, tag);
BERGeneralDecoder(as1, (byte)tag);
break;
}

Expand Down

0 comments on commit 1fe0cc8

Please sign in to comment.