fix Windows return statement
This commit is contained in:
parent
e8ac0945ca
commit
0857839001
1 changed files with 1 additions and 1 deletions
|
@ -1084,7 +1084,7 @@ static std::pair<int, int> test_roundtrip(ggml_backend_dev_t dev, const unsigned
|
||||||
if (!file) {
|
if (!file) {
|
||||||
printf("%s: failed to create tmpfile(), needs elevated privileges on Windows");
|
printf("%s: failed to create tmpfile(), needs elevated privileges on Windows");
|
||||||
printf("%s: skipping tests");
|
printf("%s: skipping tests");
|
||||||
return;
|
return std::make_pair(0, 0);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
GGML_ASSERT(file);
|
GGML_ASSERT(file);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue