From cc7cb875847b9759080e1ee951cffe0157e0d583 Mon Sep 17 00:00:00 2001 From: sjplimp Date: Fri, 28 Aug 2015 20:06:12 +0000 Subject: [PATCH] git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@13940 f3b2605a-c512-4ea7-a41b-209d697bcdaa --- src/input.cpp | 4 ++-- src/input.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/input.cpp b/src/input.cpp index da1b8a0bfc..a9e7ffea39 100644 --- a/src/input.cpp +++ b/src/input.cpp @@ -686,7 +686,7 @@ int Input::execute_command() else if (!strcmp(command,"thermo_modify")) thermo_modify(); else if (!strcmp(command,"thermo_style")) thermo_style(); else if (!strcmp(command,"timestep")) timestep(); - else if (!strcmp(command,"timers")) timers(); + else if (!strcmp(command,"timer")) timer_command(); else if (!strcmp(command,"uncompute")) uncompute(); else if (!strcmp(command,"undump")) undump(); else if (!strcmp(command,"unfix")) unfix(); @@ -1744,7 +1744,7 @@ void Input::thermo_style() /* ---------------------------------------------------------------------- */ -void Input::timers() +void Input::timer_command() { timer->modify_params(narg,arg); } diff --git a/src/input.h b/src/input.h index 6637d97373..ade27f75f9 100644 --- a/src/input.h +++ b/src/input.h @@ -126,7 +126,7 @@ class Input : protected Pointers { void thermo_modify(); void thermo_style(); void timestep(); - void timers(); + void timer_command(); void uncompute(); void undump(); void unfix();