From 83831ca222efeddd95c3bcf99a8d8872668321a5 Mon Sep 17 00:00:00 2001 From: Aidan Thompson Date: Mon, 6 Feb 2023 10:23:22 -0700 Subject: [PATCH] Update variable.cpp I remembered that I forgot to remove these commented printf() calls. --- src/variable.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/variable.cpp b/src/variable.cpp index 134d80af11..2d6d4694d1 100644 --- a/src/variable.cpp +++ b/src/variable.cpp @@ -771,10 +771,8 @@ int Variable::next(int narg, char **arg) error->one(FLERR,"Unexpected error while incrementing uloop style variable. " "Please contact the LAMMPS developers."); - //printf("READ %d %d\n",universe->me,nextindex); fp = fopen("tmp.lammps.variable.lock","w"); fprintf(fp,"%d\n",nextindex+1); - //printf("WRITE %d %d\n",universe->me,nextindex+1); fclose(fp); fp = nullptr; rename("tmp.lammps.variable.lock","tmp.lammps.variable");