Change in store_tally_table to try to line up with Fortran.

git-svn-id: svn://136.177.114.72/svn_GW/phreeqc3/trunk@7900 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
David L Parkhurst 2013-08-08 22:11:52 +00:00
parent b18d2ff0d2
commit 59b456bdd5

View File

@ -216,10 +216,11 @@ get_all_components(void)
#endif
/* ---------------------------------------------------------------------- */
int Phreeqc::
store_tally_table(LDBLE * l_array, int row_dim, int col_dim, LDBLE fill_factor)
store_tally_table(LDBLE * l_array, int row_dim_in, int col_dim, LDBLE fill_factor)
/* ---------------------------------------------------------------------- */
{
int i, j;
int row_dim = row_dim_in + 1;
if (tally_table == NULL)
{
input_error++;