Commit 823d60d6 authored by Jeff Garzik's avatar Jeff Garzik

[gen_init_cpio] When outputting a buffer, don't use char-at-a-time I/O.

parent 3d230060
......@@ -295,7 +295,6 @@ static int cpio_mkfile(const char *name, const char *location,
struct stat buf;
int file = -1;
int retval;
int i;
int rc = -1;
mode |= S_IFREG;
......@@ -344,8 +343,7 @@ static int cpio_mkfile(const char *name, const char *location,
push_string(name);
push_pad();
for (i = 0; i < buf.st_size; ++i)
fputc(filebuf[i], stdout);
fwrite(filebuf, buf.st_size, 1, stdout);
offset += buf.st_size;
push_pad();
rc = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment