aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/compatlib
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2025-02-12 08:50:13 +0100
committerPeter Eisentraut <peter@eisentraut.org>2025-02-12 08:50:13 +0100
commit827b4060a8e35047c1adc9ca2ab3d8e7ad905df0 (patch)
tree1235f34ef0ea04f9ccb22dd8f9c648e0e9c3ed06 /src/interfaces/ecpg/compatlib
parent506183bce73a2b22308a54876f0a56a249bc26e9 (diff)
downloadpostgresql-827b4060a8e35047c1adc9ca2ab3d8e7ad905df0.tar.gz
postgresql-827b4060a8e35047c1adc9ca2ab3d8e7ad905df0.zip
Remove unnecessary (char *) casts [mem]
Remove (char *) casts around memory functions such as memcmp(), memcpy(), or memset() where the cast is useless. Since these functions don't take char * arguments anyway, these casts are at best complicated casts to (void *), about which see commit 7f798aca1d5. Reviewed-by: Dagfinn Ilmari Mannsåker <ilmari@ilmari.org> Discussion: https://www.postgresql.org/message-id/flat/fd1fcedb-3492-4fc8-9e3e-74b97f2db6c7%40eisentraut.org
Diffstat (limited to 'src/interfaces/ecpg/compatlib')
-rw-r--r--src/interfaces/ecpg/compatlib/informix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/compatlib/informix.c b/src/interfaces/ecpg/compatlib/informix.c
index 65a0b2e46c4..e829d722f22 100644
--- a/src/interfaces/ecpg/compatlib/informix.c
+++ b/src/interfaces/ecpg/compatlib/informix.c
@@ -1035,7 +1035,7 @@ ECPG_informix_reset_sqlca(void)
if (sqlca == NULL)
return;
- memcpy((char *) sqlca, (char *) &sqlca_init, sizeof(struct sqlca_t));
+ memcpy(sqlca, &sqlca_init, sizeof(struct sqlca_t));
}
int