Skip to content

Commit 6d5be88

Browse files
author
Michael Meskes
committed
Fix include file so library is binary compatible again.
1 parent bbea129 commit 6d5be88

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

src/interfaces/ecpg/ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1120,5 +1120,10 @@ Fri Okt 5 08:37:01 CEST 2001
11201120
Fri Okt 5 19:33:46 CEST 2001
11211121

11221122
- Make sure every call to ECPGraise is logged.
1123+
1124+
Mon Okt 8 10:10:23 CEST 2001
1125+
1126+
- Fix include file so library is binary compatible again.
1127+
11231128
- Set ecpg version to 2.9.0.
11241129
- Set library version to 3.3.0.

src/interfaces/ecpg/include/ecpgtype.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ extern "C"
6868
ECPGd_ret_octet,
6969
ECPGd_scale,
7070
ECPGd_type,
71-
ECPGd_cardinality,
72-
ECPGd_EODT /* End of descriptor types. */
71+
ECPGd_EODT, /* End of descriptor types. */
72+
ECPGd_cardinality
7373
};
7474

7575
#define IS_SIMPLE_TYPE(type) (((type) >= ECPGt_char && (type) <= ECPGt_varchar2) || ((type)>=ECPGt_long_long && (type) <= ECPGt_unsigned_long_long))

0 commit comments

Comments
 (0)