Fixed an optimization compiler warning about a possible uninitialized variable.

This commit is contained in:
Harry Moffat 2006-08-19 16:08:03 +00:00
parent 3b529d293a
commit 9d6b4258d9

View file

@ -427,7 +427,7 @@ namespace Cantera {
doublereal zfixed,interp_factor;
doublereal z1 = 0.0, z2 = 0.0, t1,t2;
int strt, n, m, i;
int m1,m2;
int m1 = 0,m2 = 0;
vector_int dsize;
bool addnewpt=false;