diff options
Diffstat (limited to 'editors/patch_toybox.c')
-rw-r--r-- | editors/patch_toybox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/patch_toybox.c b/editors/patch_toybox.c index 3ffbf90..aebab81 100644 --- a/editors/patch_toybox.c +++ b/editors/patch_toybox.c @@ -200,7 +200,7 @@ int copy_tempfile(int fdin, char *name, char **tempname) *tempname = xasprintf("%sXXXXXX", name); fd = mkstemp(*tempname); - if(-1 == fd) bb_perror_msg_and_die("no temp file"); + if(-1 == fd) bb_simple_perror_msg_and_die("no temp file"); // Set permissions of output file fstat(fdin, &statbuf); |