diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2012-10-01 22:18:09 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2012-10-01 22:22:33 +0200 |
commit | 0e0068c42896c411420da4d03166d54ea32694ee (patch) | |
tree | 35a5abbafbb3bdfb2e89a6087fdda70dfb149c9e /tests/Test_parser.c | |
parent | 841a2450a9d4497c84b248f8faec1e3e38cd195b (diff) | |
download | libtasn1-0e0068c42896c411420da4d03166d54ea32694ee.tar.gz libtasn1-0e0068c42896c411420da4d03166d54ea32694ee.tar.bz2 libtasn1-0e0068c42896c411420da4d03166d54ea32694ee.zip |
eliminated use of old types
Diffstat (limited to 'tests/Test_parser.c')
-rw-r--r-- | tests/Test_parser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Test_parser.c b/tests/Test_parser.c index fd56210..2d5dd48 100644 --- a/tests/Test_parser.c +++ b/tests/Test_parser.c @@ -147,8 +147,8 @@ createFile (int lineNumber, const char *line) int main (int argc, char *argv[]) { - asn1_retCode result; - ASN1_TYPE definitions = ASN1_TYPE_EMPTY; + int result; + asn_node_t definitions = NULL; char errorDescription[ASN1_MAX_ERROR_DESCRIPTION_SIZE]; test_type *test; int errorCounter = 0, testCounter = 0; |