From a6dbb08a48903cb8f31fad2cf2d1cffa92bd4808 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 12 Oct 2006 19:29:44 +0000 Subject: small style fixes --- editors/patch.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'editors/patch.c') diff --git a/editors/patch.c b/editors/patch.c index 047de9e57..9336b275a 100644 --- a/editors/patch.c +++ b/editors/patch.c @@ -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); } } } -- cgit v1.2.3