diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2012-10-28 14:31:12 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2012-10-28 14:35:44 +0100 |
commit | 3a7e2d58be4bffbb2506f61b8be4f9da405b000b (patch) | |
tree | f4c11d17c47da19196d867bf9d9c2b56a09a4de0 /lib | |
parent | 58afc050dac52b2d2c56869a2f139729f666b740 (diff) | |
download | libtasn1-3a7e2d58be4bffbb2506f61b8be4f9da405b000b.tar.gz |
corrected types
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ASN1.y | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -34,7 +34,7 @@ static FILE *file_asn1; /* Pointer to file to parse */ static int result_parse; /* result of the parser algorithm */ -static asn1_node_t p_tree; /* pointer to the root of the +static asn1_node p_tree; /* pointer to the root of the structure created by the parser*/ static unsigned long lineNumber; /* line number describing the @@ -57,7 +57,7 @@ static int _asn1_yylex(void); %union { unsigned int constant; char str[ASN1_MAX_NAME_SIZE+1]; - asn1_node_t node; + asn1_node node; } @@ -578,7 +578,7 @@ _asn1_create_errorDescription(int error,char *errorDescription) * characters. **/ int -asn1_parser2tree(const char *file_name, asn1_node_t *definitions, +asn1_parser2tree(const char *file_name, asn1_node *definitions, char *errorDescription) { |