fix some typos caused by trusting emacs' smart case-preserving replace too much

This commit is contained in:
Axel Kohlmeyer
2018-10-19 16:11:13 -04:00
parent 9d7c4ac5f2
commit db32373b32
2 changed files with 8 additions and 8 deletions

View File

@ -17,7 +17,6 @@
#include <cstring>
#include "kspace_deprecated.h"
#include "kspace_hybrid.h"
#include "comm.h"
#include "force.h"
#include "error.h"
@ -36,14 +35,14 @@ static void writemsg(LAMMPS *lmp, const char *msg, int abend=1)
/* ---------------------------------------------------------------------- */
void KspaceDeprecated::settings(int, char **)
void KSpaceDeprecated::settings(int, char **)
{
const char *my_style = force->kspace_style;
if (strcmp(my_style,"DEPRECATED") == 0) {
writemsg(lmp,"\nKspace style 'DEPRECATED' is a dummy style\n\n",0);
writemsg(lmp,"\nKSpace style 'DEPRECATED' is a dummy style\n\n",0);
}
}
}