cff: Fix for unused variable `rest'.
This commit is contained in:
parent
a813cf4801
commit
34c203cdde
|
@ -1,3 +1,10 @@
|
||||||
|
2009-07-31 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
||||||
|
|
||||||
|
cff: Fix for unused variable `rest'.
|
||||||
|
|
||||||
|
* src/cff/cffparse.c (cff_parse_real): Insert
|
||||||
|
FT_UNUSED() to hide the unused variable warning.
|
||||||
|
|
||||||
2009-07-31 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
2009-07-31 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
||||||
|
|
||||||
cff: Fix some data types mismatching with their sources.
|
cff: Fix some data types mismatching with their sources.
|
||||||
|
|
|
@ -155,6 +155,8 @@
|
||||||
integer_length = 0;
|
integer_length = 0;
|
||||||
fraction_length = 0;
|
fraction_length = 0;
|
||||||
|
|
||||||
|
FT_UNUSED( rest );
|
||||||
|
|
||||||
/* First of all, read the integer part. */
|
/* First of all, read the integer part. */
|
||||||
phase = 4;
|
phase = 4;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue