diff options
author | Guillem Jover <guillem@debian.org> | 2013-10-11 21:07:35 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2013-10-14 05:54:21 +0200 |
commit | a57bcb1d886cda873c2cc81e73e7ac729e34142f (patch) | |
tree | c0aba113ea90513ba5dcbc4e8872c4e5d1af087e /dpkg-split | |
parent | ab5bdc1fc7bbf225efcbb3376ed309015682e772 (diff) | |
download | dpkg-a57bcb1d886cda873c2cc81e73e7ac729e34142f.tar.gz |
dpkg-split: Remove redundant call to setvbuf()
The output buffer is already setup in main().
Diffstat (limited to 'dpkg-split')
-rw-r--r-- | dpkg-split/split.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/dpkg-split/split.c b/dpkg-split/split.c index c8f9f5c31..fe91c205f 100644 --- a/dpkg-split/split.c +++ b/dpkg-split/split.c @@ -154,8 +154,6 @@ mksplit(const char *file_src, const char *prefix, off_t maxpartsize, last_partsize = partsize; nparts = (st.st_size + partsize - 1) / partsize; - setvbuf(stdout, NULL, _IONBF, 0); - printf(P_("Splitting package %s into %d part: ", "Splitting package %s into %d parts: ", nparts), package, nparts); |