From 9d64276fedf7c4319496b2cb095c3e5147f1a33c Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Wed, 30 Nov 2011 15:26:53 +0100
Subject: [PATCH] fixed a wanring concerning an unused parameter

---
 MathLib/LinAlg/Sparse/amuxCRS.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MathLib/LinAlg/Sparse/amuxCRS.cpp b/MathLib/LinAlg/Sparse/amuxCRS.cpp
index 2674496dd40..67e1106bea6 100644
--- a/MathLib/LinAlg/Sparse/amuxCRS.cpp
+++ b/MathLib/LinAlg/Sparse/amuxCRS.cpp
@@ -92,6 +92,7 @@ void amuxCRSParallelPThreads (double a,
 	delete [] thread_param_array;
 	delete [] thread_array;
 #else
+	(void) num_of_pthreads;
 	amuxCRS (a, n, iA, jA, A, x, y);
 #endif
 }
-- 
GitLab