Start 1.33.0 development cycle
[oweals/busybox.git] / libbb / wfopen.c
index 76dc8b82a0312b31d16e38e5727e527aad0a30c7..1c7f7f3d76a1ae01fe2415c3977886777769ad40 100644 (file)
@@ -6,7 +6,6 @@
  *
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
-
 #include "libbb.h"
 
 FILE* FAST_FUNC fopen_or_warn(const char *path, const char *mode)
@@ -43,7 +42,7 @@ static FILE* xfdopen_helper(unsigned fd_and_rw_bit)
 {
        FILE* fp = fdopen(fd_and_rw_bit >> 1, fd_and_rw_bit & 1 ? "w" : "r");
        if (!fp)
-               bb_error_msg_and_die(bb_msg_memory_exhausted);
+               bb_die_memory_exhausted();
        return fp;
 }
 FILE* FAST_FUNC xfdopen_for_read(int fd)