diff options
author | Jack Lloyd <[email protected]> | 2018-03-19 17:12:21 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-03-19 17:12:21 -0400 |
commit | 06b2ba179f548e830e673a0b2d749e6207f70ca9 (patch) | |
tree | 886e4375e747e6cb915f8dfa02d23956e3f6dc8b /src/lib/asn1 | |
parent | 21fe5f3ba2e8af09469ccf0b78ad11e1b7941c08 (diff) |
Remove use of ;; to end lines
Diffstat (limited to 'src/lib/asn1')
-rw-r--r-- | src/lib/asn1/asn1_print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/asn1/asn1_print.cpp b/src/lib/asn1/asn1_print.cpp index 13ae6d387..cb223e130 100644 --- a/src/lib/asn1/asn1_print.cpp +++ b/src/lib/asn1/asn1_print.cpp @@ -236,7 +236,7 @@ void ASN1_Formatter::decode(std::ostream& output, else { output << "Unknown ASN.1 tag class=" << static_cast<int>(class_tag) - << " type=" << static_cast<int>(type_tag) << "\n";; + << " type=" << static_cast<int>(type_tag) << "\n"; } obj = decoder.get_next_object(); |