Fixed some warnings found by Studio (casts)

mix.c is now obsolete and eliminated from project.

git-svn-id: svn://136.177.114.72/svn_GW/phreeqcpp/trunk@2079 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
David L Parkhurst 2007-06-15 21:28:13 +00:00
parent b2dd9ad8d1
commit c5d2d6d80d

View File

@ -408,7 +408,7 @@ void cxxKinetics::mpi_unpack(int *ints, int *ii, double *doubles, int *dd)
this->step_divide = doubles[d++];
this->rk = ints[i++];
this->bad_step_max = ints[i++];
this->use_cvode = (bool) ints[i++];
this->use_cvode = (ints[i++] == TRUE);
*ii = i;
*dd = d;
}