fix style
This commit is contained in:
parent
29234567a7
commit
f509f455a9
1 changed files with 8 additions and 6 deletions
|
@ -22330,15 +22330,17 @@ struct gguf_context * gguf_init_from_file(const char * fname, struct gguf_init_p
|
||||||
} break;
|
} break;
|
||||||
case GGUF_TYPE_ARRAY:
|
case GGUF_TYPE_ARRAY:
|
||||||
default:
|
default:
|
||||||
fprintf(stderr, "%s: invalid array type %d\n", __func__, kv->value.arr.type);
|
{
|
||||||
ok = false;
|
fprintf(stderr, "%s: invalid array type %d\n", __func__, kv->value.arr.type);
|
||||||
break;
|
ok = false;
|
||||||
|
} break;
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
default:
|
default:
|
||||||
fprintf(stderr, "%s: invalid type %d\n", __func__, kv->type);
|
{
|
||||||
ok = false;
|
fprintf(stderr, "%s: invalid type %d\n", __func__, kv->type);
|
||||||
break;
|
ok = false;
|
||||||
|
} break;
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx->header.n_kv++;
|
ctx->header.n_kv++;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue