Fixed mixing of two enum datatypes.

This commit is contained in:
Michael Meskes 2000-10-22 13:36:19 +00:00
parent aa23c70522
commit 7e02371e0f
2 changed files with 7 additions and 2 deletions

View File

@ -977,5 +977,10 @@ Tue Oct 17 08:09:16 CEST 2000
Tue Oct 17 17:36:30 CEST 2000
- Fixed some bugs in C language parsing.
Sun Oct 22 15:35:53 CEST 2000
- Fixed typos in descriptor.c.
- Set ecpg version to 2.8.0.
- Set library version to 3.2.0.

View File

@ -59,7 +59,7 @@ ECPGget_desc_header(int lineno, char *desc_name, int *count)
}
static bool
get_int_item(int lineno, void *var, enum ECPGdtype vartype, int value)
get_int_item(int lineno, void *var, enum ECPGttype vartype, int value)
{
switch (vartype)
{
@ -102,7 +102,7 @@ get_int_item(int lineno, void *var, enum ECPGdtype vartype, int value)
}
static bool
get_char_item(int lineno, void *var, enum ECPGdtype vartype, char *value, int varcharsize)
get_char_item(int lineno, void *var, enum ECPGttype vartype, char *value, int varcharsize)
{
switch (vartype)
{