small style fixes
This commit is contained in:
@@ -147,7 +147,7 @@ int patch_main(int argc, char **argv)
|
||||
strcpy(backup_filename, new_filename);
|
||||
strcat(backup_filename, ".orig");
|
||||
if (rename(new_filename, backup_filename) == -1) {
|
||||
bb_perror_msg_and_die("Couldnt create file %s",
|
||||
bb_perror_msg_and_die("cannot create file %s",
|
||||
backup_filename);
|
||||
}
|
||||
dst_stream = xfopen(new_filename, "w");
|
||||
@@ -256,10 +256,10 @@ int patch_main(int argc, char **argv)
|
||||
if ((dest_cur_line == 0) || (dest_beg_line == 0)) {
|
||||
/* The new patched file is empty, remove it */
|
||||
if (unlink(new_filename) == -1) {
|
||||
bb_perror_msg_and_die("Couldnt remove file %s", new_filename);
|
||||
bb_perror_msg_and_die("cannot remove file %s", new_filename);
|
||||
}
|
||||
if (unlink(original_filename) == -1) {
|
||||
bb_perror_msg_and_die("Couldnt remove original file %s", new_filename);
|
||||
bb_perror_msg_and_die("cannot remove original file %s", new_filename);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user