From 04b8218d2cb1185c8ab1e76e287e995590cec6c7 Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Mon, 11 Jun 2018 00:28:36 +0200 Subject: [PATCH] module name and file name should match --- src/config_material.f90 | 2 +- src/linked_list.f90 | 4 ++-- src/material.f90 | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/config_material.f90 b/src/config_material.f90 index 278e97659..9fcf51721 100644 --- a/src/config_material.f90 +++ b/src/config_material.f90 @@ -6,7 +6,7 @@ !! parts 'homogenization', 'crystallite', 'phase', 'texture', and 'microstucture' !-------------------------------------------------------------------------------------------------- module config_material - use chained_list + use linked_list use prec, only: & pReal, & pInt diff --git a/src/linked_list.f90 b/src/linked_list.f90 index 8da80ab86..254c87ba4 100644 --- a/src/linked_list.f90 +++ b/src/linked_list.f90 @@ -2,7 +2,7 @@ !> @author Martin Dieh, Max-Planck-Institut für Eisenforschung GmbH !> @brief Chained list to store string together with position of delimiters !-------------------------------------------------------------------------------------------------- -module chained_list +module linked_list use prec, only: & pReal, & pInt @@ -513,4 +513,4 @@ end function getFloatArray -end module chained_list +end module linked_list diff --git a/src/material.f90 b/src/material.f90 index 3b80d62d9..9fbd5a83c 100644 --- a/src/material.f90 +++ b/src/material.f90 @@ -8,7 +8,7 @@ !-------------------------------------------------------------------------------------------------- module material use config_material - use chained_list + use linked_list use prec, only: & pReal, & pInt, &