diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2011-11-17 07:28:59 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2011-11-17 07:28:59 +0000 |
commit | 942300e9cf5e0fb8c8ca7021d3e6e8e59533c696 (patch) | |
tree | 6ab3e0ab0a925d8e6f11050b569cb06619e47b23 /lib | |
parent | 580b8fddcdaa6de9cd5dfcaff96be5a613713777 (diff) | |
download | netpbm-mirror-942300e9cf5e0fb8c8ca7021d3e6e8e59533c696.tar.gz netpbm-mirror-942300e9cf5e0fb8c8ca7021d3e6e8e59533c696.tar.xz netpbm-mirror-942300e9cf5e0fb8c8ca7021d3e6e8e59533c696.zip |
fix data declaration - compiler warning
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@1597 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util/floatcode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/floatcode.h b/lib/util/floatcode.h index 6079c142..dc31d038 100644 --- a/lib/util/floatcode.h +++ b/lib/util/floatcode.h @@ -163,7 +163,7 @@ pm_bigendDoubleFromDouble(double const arg) { } break; case LITTLE_ENDIAN: { union { - unsigned char bytes[4]; + unsigned char bytes[8]; double native; } converter; |