Skip to content

Commit 02dee28

Browse files
committed
Fixed incorrect dimensionality in data variables in combine_vol_data
1 parent 7d6d0cd commit 02dee28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/auxiliaries/combine_vol_data.F90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ subroutine cvd_write_corners(NSPEC_AB,NGLOB_AB,ibool,xstore,ystore,zstore,data,n
631631
integer,intent(in) :: NSPEC_AB,NGLOB_AB
632632
integer,dimension(NGLLX,NGLLY,NGLLZ,NSPEC_AB),intent(in) :: ibool
633633
real(kind=CUSTOM_REAL),dimension(NGLOB_AB),intent(in) :: xstore, ystore, zstore
634-
real(kind=CUSTOM_REAL),dimension(NGLLY,NGLLY,NGLLZ,NSPEC_AB),intent(in) :: data
634+
real(kind=CUSTOM_REAL),dimension(NGLLX,NGLLY,NGLLZ,NSPEC_AB),intent(in) :: data
635635

636636
integer, intent(inout) :: numpoin,np
637637

@@ -860,7 +860,7 @@ subroutine cvd_write_GLL_points(NSPEC_AB,NGLOB_AB,ibool,xstore,ystore,zstore,dat
860860
integer,intent(in) :: NSPEC_AB,NGLOB_AB
861861
integer,dimension(NGLLX,NGLLY,NGLLZ,NSPEC_AB),intent(in) :: ibool
862862
real(kind=CUSTOM_REAL),dimension(NGLOB_AB),intent(in) :: xstore, ystore, zstore
863-
real(kind=CUSTOM_REAL),dimension(NGLLY,NGLLY,NGLLZ,NSPEC_AB),intent(in) :: data
863+
real(kind=CUSTOM_REAL),dimension(NGLLX,NGLLY,NGLLZ,NSPEC_AB),intent(in) :: data
864864

865865
integer,intent(inout) :: numpoin,np
866866

0 commit comments

Comments
 (0)