summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorCedric BAIL <cedric.bail@free.fr>2012-05-17 09:56:28 +0000
committerCedric BAIL <cedric.bail@free.fr>2012-05-17 09:56:28 +0000
commit34f5b82d6f5e52477e6576adef307818e8fc8955 (patch)
tree70211670b2d7bf18cbe61e87d226bad6d85a6824 /ChangeLog
parentc44fdbf8262ee641440f638dc27e668b34164bee (diff)
downloadeina-34f5b82d6f5e52477e6576adef307818e8fc8955.tar.gz
eina: don't assume that 'char' is a signed type in Eina_Value
The eina_value code TYPE_CHAR conversion code assumes that 'char' is a signed type, which is not true on some platforms like ARM and PPC. We need to explicitely use signed chars to make sure the value is correct. Patch by Albin 'Lutin' Tonnerre <albin.tonnerre@gmail.com> SVN revision: 71195
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7d61e5a..02b031f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -274,3 +274,7 @@
2012-05-08 Cedric Bail
* Add eina_file_map_lines to iterate on lines of a mapped file.
+
+2012-05-17 Albin Tonnerre
+
+ * Fix portability issue of Eina_Value on ARM and PPC.