From 77a628e4effe2082c5c3a3d6184ded3d7b71092a Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer <akohlmey@gmail.com> Date: Wed, 9 Aug 2017 19:13:40 -0400 Subject: [PATCH] make the deprecation warning nicer looking --- src/MEAM/pair_meam.cpp | 4 ++-- src/REAX/pair_reax.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/MEAM/pair_meam.cpp b/src/MEAM/pair_meam.cpp index c69df4bf9f..fa47944cd5 100644 --- a/src/MEAM/pair_meam.cpp +++ b/src/MEAM/pair_meam.cpp @@ -48,8 +48,8 @@ static const char *keywords[] = { PairMEAM::PairMEAM(LAMMPS *lmp) : Pair(lmp) { if (comm->me == 0) - error->warning(FLERR,"The pair_style meam command is unsupported " - "- please use pair_style meam/c instead"); + error->warning(FLERR,"The pair_style meam command is unsupported. " + "Please use pair_style meam/c instead"); single_enable = 0; restartinfo = 0; diff --git a/src/REAX/pair_reax.cpp b/src/REAX/pair_reax.cpp index 45fee71c8d..be270b3ede 100644 --- a/src/REAX/pair_reax.cpp +++ b/src/REAX/pair_reax.cpp @@ -46,8 +46,8 @@ using namespace LAMMPS_NS; PairREAX::PairREAX(LAMMPS *lmp) : Pair(lmp) { if (comm->me == 0) - error->warning(FLERR,"The pair_style reax command is unsupported" - "- please switch to pair_style reax/c instead"); + error->warning(FLERR,"The pair_style reax command is unsupported. " + "Please switch to pair_style reax/c instead"); single_enable = 0; restartinfo = 0; -- GitLab