diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index cced2f686368c9f34dae1884140d53958a7e267e..334ff10baab25ac2ea08bec30592858282f6c3d2 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -92,7 +92,7 @@ test:
     - cmake --build . -j
     - cmake --build . -j --target unit_test_coverage
     - cmake --build . -j --target cxxcaosdbcli
-    - cmake --build . -j --target ccaosdbcli
+    # - cmake --build . -j --target ccaosdbcli  # Disabled until it compiles again.
 
 # trigger the integration tests
 trigger_inttest:
diff --git a/src/cxxcaosdbcli.cpp b/src/cxxcaosdbcli.cpp
index bb089f5a4f117448238c161eb2fc82fb21ed7fdc..5e899953232f4be4e800150e139196e78bf70198 100644
--- a/src/cxxcaosdbcli.cpp
+++ b/src/cxxcaosdbcli.cpp
@@ -68,7 +68,7 @@ auto main() -> int {
   } catch (const caosdb::exceptions::ConfigurationError &exc) {
     std::cout << "ConfigurationError: " << exc.what() << std::endl;
     return exc.GetCode();
-  } catch (const std::exception& exc) {
+  } catch (const std::exception &exc) {
     std::cout << "Exception: " << exc.what() << std::endl;
     return 1;
   } catch (...) {