From af3d97102383772d3f96743d8afec8e93e54dfa4 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Mon, 19 Jun 2023 15:28:27 -0400 Subject: [PATCH] allow longer argument strings to avoid failues with unit tests --- examples/COUPLE/simple/simple.f90 | 2 +- fortran/lammps.f90 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/COUPLE/simple/simple.f90 b/examples/COUPLE/simple/simple.f90 index 3aafbee01b..d9505fff4d 100644 --- a/examples/COUPLE/simple/simple.f90 +++ b/examples/COUPLE/simple/simple.f90 @@ -30,7 +30,7 @@ PROGRAM f_driver REAL (kind=8), ALLOCATABLE :: x(:) REAL (kind=8), PARAMETER :: epsilon=0.1 - CHARACTER (len=64) :: arg + CHARACTER (len=1024) :: arg CHARACTER (len=1024) :: line ! setup MPI and various communicators diff --git a/fortran/lammps.f90 b/fortran/lammps.f90 index ba3997ac8e..28e40bca44 100644 --- a/fortran/lammps.f90 +++ b/fortran/lammps.f90 @@ -20,7 +20,7 @@ ! University of Missouri, 2012-2020 ! ! Contributing authors: -! - Axel Kohlmeyer , Temple University, 2020-2022 +! - Axel Kohlmeyer , Temple University, 2020-2023 ! - Karl D. Hammond , University of Missouri, 2022 ! ! The Fortran module tries to follow the API of the C library interface