Skip to content
Snippets Groups Projects
Commit 6ac04066 authored by Lev Walkin's avatar Lev Walkin
Browse files

removed semicolon to be able to use it in conditional statements

parent a37df949
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ xer_type_encoder_f OCTET_STRING_encode_xer_utf8; ...@@ -43,7 +43,7 @@ xer_type_encoder_f OCTET_STRING_encode_xer_utf8;
int OCTET_STRING_fromBuf(OCTET_STRING_t *s, const char *str, int size); int OCTET_STRING_fromBuf(OCTET_STRING_t *s, const char *str, int size);
/* Handy conversion from the C string into the OCTET STRING. */ /* Handy conversion from the C string into the OCTET STRING. */
#define OCTET_STRING_fromString(s, str) OCTET_STRING_fromBuf(s, str, -1); #define OCTET_STRING_fromString(s, str) OCTET_STRING_fromBuf(s, str, -1)
/* /*
* Allocate and fill the new OCTET STRING and return a pointer to the newly * Allocate and fill the new OCTET STRING and return a pointer to the newly
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment