[cig-commits] r4162 - in long/3D/Gale/trunk/src/StgFEM: . SLE/SystemSetup/src

walter at geodynamics.org walter at geodynamics.org
Tue Aug 1 01:54:48 PDT 2006


Author: walter
Date: 2006-08-01 01:54:48 -0700 (Tue, 01 Aug 2006)
New Revision: 4162

Modified:
   long/3D/Gale/trunk/src/StgFEM/
   long/3D/Gale/trunk/src/StgFEM/SLE/SystemSetup/src/SolutionVector.c
Log:
 r726 at earth:  boo | 2006-08-01 01:52:55 -0700
  r716 at earth (orig r620):  PatrickSunter | 2006-07-26 17:36:11 -0700
  Very minor indentation tidy-up on SolutionVector.c
  
 



Property changes on: long/3D/Gale/trunk/src/StgFEM
___________________________________________________________________
Name: svk:merge
   - 38867592-cf10-0410-9e16-a142ea72ac34:/cig:725
db209038-57f2-0310-97fa-b160e0ae9d04:/trunk:619
   + 38867592-cf10-0410-9e16-a142ea72ac34:/cig:726
db209038-57f2-0310-97fa-b160e0ae9d04:/trunk:620

Modified: long/3D/Gale/trunk/src/StgFEM/SLE/SystemSetup/src/SolutionVector.c
===================================================================
--- long/3D/Gale/trunk/src/StgFEM/SLE/SystemSetup/src/SolutionVector.c	2006-08-01 08:54:44 UTC (rev 4161)
+++ long/3D/Gale/trunk/src/StgFEM/SLE/SystemSetup/src/SolutionVector.c	2006-08-01 08:54:48 UTC (rev 4162)
@@ -288,13 +288,16 @@
 
 
 void _SolutionVector_Initialise( void* solutionVector, void* data ) {
-	SolutionVector	*self = (SolutionVector *)solutionVector;
+	SolutionVector*          self = (SolutionVector *)solutionVector;
+	DiscretisationContext*   context = (DiscretisationContext*)data;
 	
 	Journal_DPrintf( self->debug, "In %s - for \"%s\"\n", __func__, self->name );
 	Stream_IndentBranch( StG_FEM_Debug );
 	/* ensure variables are initialised */
-	if( self->feVariable )
+	if( self->feVariable ) {
 		Initialise( self->feVariable, 0, False );
+	}
+		
 	Stream_UnIndentBranch( StG_FEM_Debug );
 }
 



More information about the cig-commits mailing list