Skip to content
Snippets Groups Projects
Commit 4b1b9ca9 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

*** empty log message ***

parent ae3c3d11
No related branches found
No related tags found
No related merge requests found
...@@ -241,7 +241,7 @@ int subdivideOctantBucket(octantBucket *_bucket, globalInfo *_globalPara) ...@@ -241,7 +241,7 @@ int subdivideOctantBucket(octantBucket *_bucket, globalInfo *_globalPara)
// _bucket->next = (octantBucket *) calloc(numBuck,sizeof(octantBucket)); // _bucket->next = (octantBucket *) calloc(numBuck,sizeof(octantBucket));
if (!_bucket->next) { if (!_bucket->next) {
fprintf(stderr,"Error, subdivideOctantBucket could not allocate enough space\n"); Msg::Error("subdivideOctantBucket could not allocate enough space");
return 0; return 0;
} }
...@@ -295,7 +295,7 @@ void *searchElement(octantBucket *_buckets_head, double *_pt, globalInfo *_globa ...@@ -295,7 +295,7 @@ void *searchElement(octantBucket *_buckets_head, double *_pt, globalInfo *_globa
ptrBucket = findElementBucket(_buckets_head, _pt); ptrBucket = findElementBucket(_buckets_head, _pt);
if (ptrBucket == NULL) { if (ptrBucket == NULL) {
printf("Error! the point is not in the domain.\n"); Msg::Error("The point is not in the domain");
return NULL; return NULL;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment