Skip to content

Commit

Permalink
fixed #289: File_static_set_filedate.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kray-G committed May 14, 2021
1 parent ca1f51b commit a53fb39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extlib/kxfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ int File_static_set_filedate(int args, kx_frm_t *frmv, kx_frm_t *lexv, kx_contex
if (!target) {
KX_THROW_BLTIN_EXCEPTION("FileException", "Needs the file name to set file date");
}
kx_obj_t *obj = get_arg_obj(1, args, ctx);
kx_obj_t *obj = get_arg_obj(2, args, ctx);
time_t modified_date = 0;
time_t accessed_date = 0;
time_t creation_date = 0;
Expand Down

0 comments on commit a53fb39

Please sign in to comment.