fix style

This commit is contained in:
slaren 2024-10-30 13:02:05 +01:00
parent 29234567a7
commit f509f455a9

View file

@ -22330,15 +22330,17 @@ struct gguf_context * gguf_init_from_file(const char * fname, struct gguf_init_p
} break;
case GGUF_TYPE_ARRAY:
default:
fprintf(stderr, "%s: invalid array type %d\n", __func__, kv->value.arr.type);
ok = false;
break;
{
fprintf(stderr, "%s: invalid array type %d\n", __func__, kv->value.arr.type);
ok = false;
} break;
}
} break;
default:
fprintf(stderr, "%s: invalid type %d\n", __func__, kv->type);
ok = false;
break;
{
fprintf(stderr, "%s: invalid type %d\n", __func__, kv->type);
ok = false;
} break;
}
ctx->header.n_kv++;