From 55490de87103563fc40e0645613ac3e69cdd15a6 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Tue, 15 May 2018 20:53:06 -0400 Subject: [PATCH] Fix compiler warning about m_Faraday_dim --- src/equil/vcs_TP.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/equil/vcs_TP.cpp b/src/equil/vcs_TP.cpp index b0dcb856f..4ae98591f 100644 --- a/src/equil/vcs_TP.cpp +++ b/src/equil/vcs_TP.cpp @@ -13,7 +13,7 @@ int VCS_SOLVE::vcs_TP(int ipr, int ip1, int maxit, double T_arg, double pres_arg // Store the temperature and pressure in the private global variables m_temperature = T_arg; m_pressurePA = pres_arg; - m_Faraday_dim = m_Faraday_dim = Faraday / (m_temperature * GasConstant); + m_Faraday_dim = Faraday / (m_temperature * GasConstant); // Evaluate the standard state free energies // at the current temperatures and pressures.