-
-
Notifications
You must be signed in to change notification settings - Fork 419
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto-update ocilib to v4.7.7 (#6182)
* Update ocilib to v4.7.7 * add patch --------- Co-authored-by: star9029 <hengxings783@gmail.com>
- Loading branch information
1 parent
802b349
commit 8cc5580
Showing
2 changed files
with
31 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
From 4b67124796225c6e1b6038ab1c9f11b232aa50fb Mon Sep 17 00:00:00 2001 | ||
From: Vincent Rogier <vince.rogier@ocilib.net> | ||
Date: Mon, 20 Jan 2025 13:47:30 +0100 | ||
Subject: [PATCH] Fixed # #371 (missing cast leading compile falieur on gcc14 | ||
as -Wincompatible-pointer-types becomes default) | ||
|
||
--- | ||
src/reference.c | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/src/reference.c b/src/reference.c | ||
index d760420c..428318b7 100644 | ||
--- a/src/reference.c | ||
+++ b/src/reference.c | ||
@@ -443,7 +443,7 @@ boolean OcilibReferenceToString | ||
} | ||
else | ||
{ | ||
- dbstr = str; | ||
+ dbstr = (dbtext *) str; | ||
} | ||
|
||
CHECK_OCI |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters