We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The problem is that K_copy_1(...) calls K_load() where the file_type is deduced from the KDB type:
In file api/k_objfile.c, we have
api/k_objfile.c
static int K_copy_1(KDB* to, FNAME file, int no, char** objs, int* found, SAMPLE* smpl) { int i, pf, pt, rc = 0, nb_found = 0; KDB *from; char *ptr, *pack; SAMPLE csmpl; from = K_load(KTYPE(to), file, no, objs); if(from == NULL) return(-1); (...)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The problem is that K_copy_1(...) calls K_load() where the file_type is deduced from the KDB type:
In file
api/k_objfile.c
, we haveThe text was updated successfully, but these errors were encountered: