missing format * in a write statement in exx

git-svn-id: http://qeforge.qe-forge.org/svn/q-e/trunk/espresso@6698 c92efa57-630b-4861-b058-cf58834340f0
This commit is contained in:
marsamos 2010-05-03 11:30:26 +00:00
parent 1a198fcaaa
commit 9bb988ee20
1 changed files with 6 additions and 1 deletions

View File

@ -817,7 +817,8 @@ CONTAINS
!
!loads the phi from file
!
WRITE(stdout,*) "from vexx, nrxxs: ", nrxxs, ikq, h_ibnd
call flush_unit(stdout)
do ji=1, nrxxs
tempphic(ji)=exxbuff(ji,ikq,h_ibnd)
@ -849,6 +850,10 @@ CONTAINS
!
!loads the phi from file
!
WRITE(stdout,*) "from vexx, nrxxs: ", nrxxs, ikq, ibnd
if(allocated(tempphic)) write(stdout,*) "tempphic allcated"
if(allocated(exxbuff)) write(stdout,*) "exxbuff allocated"
call flush_unit(stdout)
do ji=1, nrxxs
tempphic(ji)=exxbuff(ji,ikq,ibnd)
enddo