Commit 7e02371e authored by Michael Meskes's avatar Michael Meskes

Fixed mixing of two enum datatypes.

parent aa23c705
...@@ -977,5 +977,10 @@ Tue Oct 17 08:09:16 CEST 2000 ...@@ -977,5 +977,10 @@ Tue Oct 17 08:09:16 CEST 2000
Tue Oct 17 17:36:30 CEST 2000 Tue Oct 17 17:36:30 CEST 2000
- Fixed some bugs in C language parsing. - 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 ecpg version to 2.8.0.
- Set library version to 3.2.0. - Set library version to 3.2.0.
...@@ -59,7 +59,7 @@ ECPGget_desc_header(int lineno, char *desc_name, int *count) ...@@ -59,7 +59,7 @@ ECPGget_desc_header(int lineno, char *desc_name, int *count)
} }
static bool 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) switch (vartype)
{ {
...@@ -102,7 +102,7 @@ get_int_item(int lineno, void *var, enum ECPGdtype vartype, int value) ...@@ -102,7 +102,7 @@ get_int_item(int lineno, void *var, enum ECPGdtype vartype, int value)
} }
static bool 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) switch (vartype)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment