[cig-commits] r13211 - seismo/2D/SPECFEM2D/trunk

dkomati1 at geodynamics.org dkomati1 at geodynamics.org
Sat Nov 1 11:01:17 PDT 2008


Author: dkomati1
Date: 2008-11-01 11:01:17 -0700 (Sat, 01 Nov 2008)
New Revision: 13211

Modified:
   seismo/2D/SPECFEM2D/trunk/plotpost.F90
Log:
fixed a small problem in the PostScript routine: the code did not compile in the 
serial case because of an undeclared variable; it also gave several warnings about unused variables


Modified: seismo/2D/SPECFEM2D/trunk/plotpost.F90
===================================================================
--- seismo/2D/SPECFEM2D/trunk/plotpost.F90	2008-10-31 22:51:46 UTC (rev 13210)
+++ seismo/2D/SPECFEM2D/trunk/plotpost.F90	2008-11-01 18:01:17 UTC (rev 13211)
@@ -206,18 +206,23 @@
 coorg_recv_ps_vector_field
 
 #ifndef USE_MPI
-  allocate(coorg_recv(1,1))
-  allocate(color_recv(1))
-  allocate(RGB_recv(1,1))
+! this to avoid warnings by the compiler about unused variables in the case
+! of a serial code, therefore use them once and do nothing: just set them to zero
   nspec_recv = 0
   nb_coorg_per_elem = 0
   nb_color_per_elem = 0
   ier = 0
   num_spec = 0
   iproc = nproc
+  coorg_recv_ps_velocity_model = 0
+  RGB_recv_ps_velocity_model = 0
+  coorg_recv_ps_element_mesh = 0
+  color_recv_ps_element_mesh = 0
+  coorg_recv_ps_abs = 0
+  coorg_recv_ps_free_surface = 0
+  coorg_recv_ps_vector_field = 0
+  allocate(coorg_recv(1,1))
   deallocate(coorg_recv)
-  deallocate(color_recv)
-  deallocate(RGB_recv)
 #endif
 
 ! A4 or US letter paper



More information about the CIG-COMMITS mailing list