From 79af2880b327c29024689856a09f82c73eba9e3d Mon Sep 17 00:00:00 2001 From: Joachim Schoeberl Date: Sun, 18 Jan 2009 00:41:22 +0000 Subject: [PATCH] fix for SUN compiler --- libsrc/meshing/secondorder.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libsrc/meshing/secondorder.cpp b/libsrc/meshing/secondorder.cpp index 66c91cfe..3b03b061 100644 --- a/libsrc/meshing/secondorder.cpp +++ b/libsrc/meshing/secondorder.cpp @@ -73,7 +73,7 @@ namespace netgen { 3, 2, 5 }, { 0, 3, 6 }, { 1, 2, 7 } }; - int (*betw)[3](NULL); + int (*betw)[3] = 0; switch (el.GetType()) { @@ -169,7 +169,7 @@ namespace netgen { 3, 4, 10 }, { 4, 5, 11 }, }; - int (*betw)[3](NULL); + int (*betw)[3] = 0; switch (el.GetType()) {