This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository efl.
View the commit online.
commit 73dbb7e660c6122496817cae9acb426d292f2742
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Wed Aug 7 09:57:05 2024 +0100
embryo - fix ptr type warnings
fixes issue #69
@fix
---
src/bin/embryo/embryo_cc_sc6.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/bin/embryo/embryo_cc_sc6.c b/src/bin/embryo/embryo_cc_sc6.c
index ccf8abf1dd..f8accc22b1 100644
--- a/src/bin/embryo/embryo_cc_sc6.c
+++ b/src/bin/embryo/embryo_cc_sc6.c
@@ -94,8 +94,8 @@ hex2long(char *s, char **n)
}
#ifdef WORDS_BIGENDIAN
-static short *
-align16(short *v)
+static void *
+align16(void *v)
{
unsigned char *s = (unsigned char *)v;
unsigned char t;
@@ -107,8 +107,8 @@ align16(short *v)
return v;
}
-static long *
-align32(long *v)
+static void *
+align32(void *v)
{
unsigned char *s = (unsigned char *)v;
unsigned char t;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.