From 55989d2e8f7fa18ca0fab469bd1cc04f4c2e4681 Mon Sep 17 00:00:00 2001 From: Salvatore Filippone Date: Tue, 25 Feb 2020 08:28:31 +0000 Subject: [PATCH] Do not use allocatable characters --- base/modules/psb_timers_mod.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/modules/psb_timers_mod.f90 b/base/modules/psb_timers_mod.f90 index 5b2a8054..2b2ae6ed 100644 --- a/base/modules/psb_timers_mod.f90 +++ b/base/modules/psb_timers_mod.f90 @@ -56,7 +56,7 @@ module psb_timers_mod ! The data itself type psb_string_item - character(len=:), allocatable :: data + character(len=40), allocatable :: data end type psb_string_item integer(psb_ipk_), allocatable :: nsamples(:) real(psb_dpk_), allocatable :: timers(:,:)