=================================================================== RCS file: /home/cvs/OpenXM/src/ox_toolkit/cmo.c,v retrieving revision 1.25 retrieving revision 1.27 diff -u -p -r1.25 -r1.27 --- OpenXM/src/ox_toolkit/cmo.c 2015/08/18 02:24:04 1.25 +++ OpenXM/src/ox_toolkit/cmo.c 2016/06/30 01:14:00 1.27 @@ -1,10 +1,8 @@ /* -*- mode: C; coding: euc-japan -*- */ -/* $OpenXM: OpenXM/src/ox_toolkit/cmo.c,v 1.24 2015/08/17 05:18:35 noro Exp $ */ +/* $OpenXM: OpenXM/src/ox_toolkit/cmo.c,v 1.26 2016/06/29 05:07:23 ohara Exp $ */ /* This module includes functions for sending/receiveng CMO's. - Some commnets is written in Japanese by the EUC-JP coded - character set. */ #include @@ -257,7 +255,7 @@ cmo_qq* new_cmo_qq() cmo_bf* new_cmo_bf() { cmo_bf* c = MALLOC(sizeof(cmo_bf)); - c->tag = CMO_BIGFLOAT; + c->tag = CMO_BIGFLOAT32; mpfr_init(c->mpfr); return c; }