Introduce type for BER BOOLEAN/INTEGER .
[yaz-moved-to-github.git] / src / odr_enum.c
index 88b39de..d658ca8 100644 (file)
@@ -16,7 +16,7 @@
  * Top level enum en/decoder.
  * Returns 1 on success, 0 on error.
  */
  * Top level enum en/decoder.
  * Returns 1 on success, 0 on error.
  */
-int odr_enum(ODR o, odr_int_t **p, int opt, const char *name)
+int odr_enum(ODR o, Odr_int **p, int opt, const char *name)
 {
     int res, cons = 0;
 
 {
     int res, cons = 0;
 
@@ -44,7 +44,7 @@ int odr_enum(ODR o, odr_int_t **p, int opt, const char *name)
         return 0;
     }
     if (o->direction == ODR_DECODE)
         return 0;
     }
     if (o->direction == ODR_DECODE)
-        *p = (odr_int_t *)odr_malloc(o, sizeof(**p));
+        *p = (Odr_int *)odr_malloc(o, sizeof(**p));
     return ber_integer(o, *p);
 }
 /*
     return ber_integer(o, *p);
 }
 /*