Skip to content

Commit

Permalink
Fixed issue #333
Browse files Browse the repository at this point in the history
  • Loading branch information
Vincent Rogier committed Feb 23, 2023
1 parent bef84ad commit 5c157eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connection.c
Original file line number Diff line number Diff line change
Expand Up @@ -1664,7 +1664,7 @@ const otext * OcilibConnectionGetServerVersion
(int*)&ver_min,
(int*)&ver_rev))
{
con->ver_num = ver_maj * 100 + ver_min * 10 + ver_rev;
con->ver_num = OCI_VER_MAKE(ver_maj, ver_min, ver_rev);
}

break;
Expand Down

0 comments on commit 5c157eb

Please sign in to comment.