From 8f6f5cd63c49dabdf5dc3b6c5913c6b85237bd41 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Mon, 16 Dec 2013 11:39:17 +0100 Subject: [PATCH] whitespace cleanup --- src/input.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/input.cpp b/src/input.cpp index d0ae8c7c05..faade606c8 100644 --- a/src/input.cpp +++ b/src/input.cpp @@ -238,12 +238,12 @@ void Input::file(const char *filename) // error if another nested file still open, should not be possible // open new filename and set infile, infiles[0], nfile // call to file() will close filename and decrement nfile - + if (me == 0) { if (nfile > 1) error->one(FLERR,"Invalid use of library file() function"); - if (infile && infile != stdin) fclose(infile); + if (infile && infile != stdin) fclose(infile); infile = fopen(filename,"r"); if (infile == NULL) { char str[128];