Fixed a warning message about no return from a double function.

This commit is contained in:
Harry Moffat 2006-02-24 23:22:14 +00:00
parent 55e98c86f5
commit 1cd614efc6

View file

@ -64,8 +64,7 @@ static double pfprop(int n, int i, double v=0.0, double x=0.0) {
case 7: p->setState_Tsat(v, x); return 0.0;
}
}
else
return DERR;
return DERR;
}