Signed-off-by: Marek Polacek <[email protected]>
---
 editors/ed.c |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/editors/ed.c b/editors/ed.c
index 516b8d7..8596684 100644
--- a/editors/ed.c
+++ b/editors/ed.c
@@ -671,7 +671,7 @@ static int readLines(const char *file, int num)

     fd = open(file, 0);
     if (fd < 0) {
-        perror(file);
+        bb_simple_perror_msg(file);
         return FALSE;
     }

@@ -721,7 +721,7 @@ static int readLines(const char *file, int num)
     } while (cc > 0);

     if (cc < 0) {
-        perror(file);
+        bb_simple_perror_msg(file);
         close(fd);
         return FALSE;
     }
@@ -761,7 +761,7 @@ static int writeLines(const char *file, int num1, int num2)

     fd = creat(file, 0666);
     if (fd < 0) {
-        perror(file);
+        bb_simple_perror_msg(file);
         return FALSE;
     }

@@ -776,7 +776,7 @@ static int writeLines(const char *file, int num1, int num2)

     while (num1++ <= num2) {
         if (full_write(fd, lp->data, lp->len) != lp->len) {
-            perror(file);
+            bb_simple_perror_msg(file);
             close(fd);
             return FALSE;
         }
@@ -786,7 +786,7 @@ static int writeLines(const char *file, int num1, int num2)
     }

     if (close(fd) < 0) {
-        perror(file);
+        bb_simple_perror_msg(file);
         return FALSE;
     }

--
1.7.2.3
_______________________________________________
busybox mailing list
[email protected]
http://lists.busybox.net/mailman/listinfo/busybox

Reply via email to