Code

CData: Use float8 rather than double.
authorSebastian Harl <sh@tokkee.org>
Mon, 30 Apr 2012 12:51:30 +0000 (14:51 +0200)
committerSebastian Harl <sh@tokkee.org>
Mon, 30 Apr 2012 12:51:30 +0000 (14:51 +0200)
This makes the storage size explicit.

src/cdata.c

index 432aba359a274df1b1489cc4a9cb3cd3a9557f5e..6d202e20da6f525c63c470038f5015edcdd1c001 100644 (file)
@@ -60,7 +60,7 @@ enum {
  */
 
 struct cdata {
-       double value;
+       float8 value;
        int32 undef_num;
        int32 val_num;
        int32 cf;