From d21c5058fc0695a439e72706a4a0bf02f4ed8044 Mon Sep 17 00:00:00 2001 From: Lev Walkin Date: Wed, 29 Sep 2004 13:18:09 +0000 Subject: different type name for the big integer --- libasn1parser/asn1p_l.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libasn1parser/asn1p_l.c') diff --git a/libasn1parser/asn1p_l.c b/libasn1parser/asn1p_l.c index 2d0c3075..93a12c34 100644 --- a/libasn1parser/asn1p_l.c +++ b/libasn1parser/asn1p_l.c @@ -1808,7 +1808,7 @@ int asn1p_lexer_pedantic_1990 = 0; int asn1p_lexer_types_year = 0; int asn1p_lexer_constructs_year = 0; static int _check_dashes(char *ptr); -static asn1_integer_t asn1p_atoi(char *ptr); /* errno is either 0 or ERANGE */ +static asn1c_integer_t asn1p_atoi(char *ptr); /* errno is either 0 or ERANGE */ /* * Check that the type is defined in the year of the standard choosen. @@ -3957,9 +3957,9 @@ _check_dashes(char *ptr) { return 0; } -static asn1_integer_t +static asn1c_integer_t asn1p_atoi(char *ptr) { - asn1_integer_t value; + asn1c_integer_t value; errno = 0; /* Clear the error code */ if(sizeof(value) <= sizeof(int)) { -- cgit v1.2.3