diff --git a/src/cluster/cluster.cpp b/src/cluster/cluster.cpp
index ca17674e0d0dcf4edeb514199d12c1edd56ffa3b..8c4790564598e5d4529c9b18dcb6b480d4fe738c 100644
--- a/src/cluster/cluster.cpp
+++ b/src/cluster/cluster.cpp
@@ -191,10 +191,10 @@ void cluster(const string& config_file, const string& data_file, const string& o
       string tppoan_name = output_path + "/c_TPPOAN";
       tppoan.open(tppoan_name.c_str(), ios::out | ios::binary);
       if (tppoan.is_open()) {
-#ifdef USE_LAPACK
-	logger->log("INFO: using LAPACK calls.\n", LOG_INFO);
-#elif defined USE_MAGMA
+#ifdef USE_MAGMA
 	logger->log("INFO: using MAGMA calls.\n", LOG_INFO);
+#elif defined USE_LAPACK
+	logger->log("INFO: using LAPACK calls.\n", LOG_INFO);
 #else
 	logger->log("INFO: using fall-back lucin() calls.\n", LOG_INFO);
 #endif