Blob Blame History Raw
# see https://github.com/Beep6581/RawTherapee/issues/5177
diff --git a/rtengine/demosaic_algos.cc b/rtengine/demosaic_algos.cc
index 617feb3b4..7339981e5 100644
--- a/rtengine/demosaic_algos.cc
+++ b/rtengine/demosaic_algos.cc
@@ -388,7 +388,7 @@ void RawImageSource::jdl_interpolate_omp()  // from "Lassus"
     }
 
 #ifdef _OPENMP
-    #pragma omp parallel default(none) shared(image,width,height,u,w,v,y,x,z,dif,chr) private(row,col,f,g,indx,c,d,i)
+    #pragma omp parallel shared(image,width,height,u,w,v,y,x,z,dif,chr) private(row,col,f,g,indx,c,d,i)
 #endif
     {
 #ifdef _OPENMP
@@ -1159,7 +1159,7 @@ void RawImageSource::igv_interpolate(int winw, int winh)
     }
 
 #ifdef _OPENMP
-    #pragma omp parallel default(none) shared(rgb,vdif,hdif,chr)
+    #pragma omp parallel shared(rgb,vdif,hdif,chr)
 #endif
     {
         __m128 ngv, egv, wgv, sgv, nvv, evv, wvv, svv, nwgv, negv, swgv, segv, nwvv, nevv, swvv, sevv, tempv, temp1v, temp2v, temp3v, temp4v, temp5v, temp6v, temp7v, temp8v;
@@ -1548,7 +1548,7 @@ void RawImageSource::igv_interpolate(int winw, int winh)
     }
 
 #ifdef _OPENMP
-    #pragma omp parallel default(none) shared(rgb,vdif,hdif,chr)
+    #pragma omp parallel shared(rgb,vdif,hdif,chr)
 #endif
     {