From 08578390013117415d3eccafb6c81516526f2c8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20G=C3=A4=C3=9Fler?= Date: Fri, 3 Jan 2025 15:46:41 +0100 Subject: [PATCH] fix Windows return statement --- tests/test-gguf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-gguf.cpp b/tests/test-gguf.cpp index 452bd5576..611957ac0 100644 --- a/tests/test-gguf.cpp +++ b/tests/test-gguf.cpp @@ -1084,7 +1084,7 @@ static std::pair test_roundtrip(ggml_backend_dev_t dev, const unsigned if (!file) { printf("%s: failed to create tmpfile(), needs elevated privileges on Windows"); printf("%s: skipping tests"); - return; + return std::make_pair(0, 0); } #else GGML_ASSERT(file);