fix whitespace and typo

This commit is contained in:
Axel Kohlmeyer
2021-03-09 16:00:14 -05:00
parent f0381b48ca
commit fb39ceaaeb
2 changed files with 3 additions and 6 deletions

View File

@ -32,7 +32,7 @@ namespace LAMMPS_NS
{ {
LAMMPS *lmp = (LAMMPS *)ptr; LAMMPS *lmp = (LAMMPS *)ptr;
#if defined(WIN32) #if defined(WIN32)
utils::logmsg(lmp,"Loading of plugins not supported on Windows yet\n"); utils::logmesg(lmp,"Loading of plugins not supported on Windows yet\n");
#else #else
void *dso = dlopen(file,RTLD_NOW); void *dso = dlopen(file,RTLD_NOW);
if (dso == nullptr) { if (dso == nullptr) {
@ -71,6 +71,3 @@ namespace LAMMPS_NS
} }
} }
} }