@ -49,14 +49,12 @@ extern int cat_main(int argc, char **argv)
argv++;
while(argc-->0){
file=fopen(*argv,"r");
file=fopen(*(argv++),"r");
if(file==NULL){
perror(*argv);
exit(FALSE);
}
print_file(file);
argc--;
argv++;
}
exit(TRUE);
}
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.