From 4b1b9ca9848e1df093351e9c3f373fde00725a7b Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Wed, 21 Jan 2009 13:37:58 +0000
Subject: [PATCH] *** empty log message ***

---
 Common/OctreeInternals.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Common/OctreeInternals.cpp b/Common/OctreeInternals.cpp
index 600143b0a1..d76f27b86a 100644
--- a/Common/OctreeInternals.cpp
+++ b/Common/OctreeInternals.cpp
@@ -241,7 +241,7 @@ int subdivideOctantBucket(octantBucket *_bucket, globalInfo *_globalPara)
   // _bucket->next  = (octantBucket *) calloc(numBuck,sizeof(octantBucket));
 
   if (!_bucket->next) {
-    fprintf(stderr,"Error, subdivideOctantBucket could not allocate enough space\n");
+    Msg::Error("subdivideOctantBucket could not allocate enough space");
     return 0;
   }
 
@@ -295,7 +295,7 @@ void *searchElement(octantBucket *_buckets_head, double *_pt, globalInfo *_globa
      
   ptrBucket = findElementBucket(_buckets_head, _pt);
   if (ptrBucket == NULL) {
-    printf("Error! the point is not in the domain.\n");
+    Msg::Error("The point is not in the domain");
     return NULL;
   }     
 
-- 
GitLab