Skip to content
Snippets Groups Projects
Commit 7e02371e authored by Michael Meskes's avatar Michael Meskes
Browse files

Fixed mixing of two enum datatypes.

parent aa23c705
No related branches found
No related tags found
No related merge requests found
......@@ -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.
......@@ -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)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment