gmxana: clean up -Wunused-parameter warnings
[alexxy/gromacs.git] / src / gromacs / gmxana / gmx_sigeps.c
index 09481d0a49d42cda2f74825ea3881350e22f5bd9..61ea4a647386982259debb13c83a5dd67c68355d 100644 (file)
@@ -62,7 +62,7 @@ real pot(real x, real qq, real c6, real cn, int npow)
     return cn*pow(x, -npow)-c6*pow(x, -6)+qq*ONE_4PI_EPS0/x;
 }
 
-real bhpot(real x, real qq, real A, real B, real C)
+real bhpot(real x, real A, real B, real C)
 {
     return A*exp(-B*x) - C*pow(x, -6.0);
 }
@@ -173,7 +173,7 @@ int gmx_sigeps(int argc, char *argv[])
         x        = sigfac*sig+sig*i*0.02;
         dp[next] = dpot(x, qq, c6, cn, npow);
         fprintf(fp, "%10g  %10g  %10g\n", x, pot(x, qq, c6, cn, npow),
-                bhpot(x, qq, Abh, Bbh, Cbh));
+                bhpot(x, Abh, Bbh, Cbh));
         if (qq != 0)
         {
             if ((i > 0) && (dp[cur]*dp[next] < 0))