check bug @x86_64

This commit is contained in:
2020-12-14 18:36:28 +03:00
parent 80154b79e8
commit 288cfcb2b9
20 changed files with 3358 additions and 6613 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -141,7 +141,7 @@ void find_starting_pos(){ //
cache_fd = open("./cache", O_RDONLY);
}
if(cache_fd < 0){
WARN(_L(_s_Cant_open_cache_));
WARN("%s", _L(_s_Cant_open_cache_));
exit(1);
}
while(read(cache_fd, &cache, sizeof(cache)) > 0){
@@ -348,7 +348,7 @@ int main(int argc, char **argv){
out_fd = open("./out", O_RDONLY);
}
if(out_fd < 0){
WARN(_L(_s_Cant_open_data_));
WARN("%s", _L(_s_Cant_open_data_));
return(1);
}
if(lookout) print_dates();