[hackers] [ii][PATCH] ewritestr: Remove duplicate shift of offset

2020-07-05 Thread mizmar
--- ii.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ii.c b/ii.c index 7ca3ee8..426fcff 100644 --- a/ii.c +++ b/ii.c @@ -102,7 +102,6 @@ ewritestr(int fd, const char *s) for (off = 0; off < len; off += w) { if ((w = write(fd, s + off, len - off)) == -1)

Re: [hackers] [ii][PATCH] ewritestr: Remove duplicate shift of offset

2020-07-05 Thread Hiltjo Posthuma
On Sun, Jul 05, 2020 at 07:39:19PM +, miz...@protonmail.com wrote: > --- > ii.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/ii.c b/ii.c > index 7ca3ee8..426fcff 100644 > --- a/ii.c > +++ b/ii.c > @@ -102,7 +102,6 @@ ewritestr(int fd, const char *s) > for (off = 0; off < le

[hackers] [ii] ewritestr: Remove duplicate shift of offset || Hiltjo Posthuma

2020-07-05 Thread git
commit ecf390259cfe193e7a41fbd1b7a4380621b8f677 Author: Hiltjo Posthuma AuthorDate: Sun Jul 5 22:32:13 2020 +0200 Commit: Hiltjo Posthuma CommitDate: Sun Jul 5 22:32:13 2020 +0200 ewritestr: Remove duplicate shift of offset Patch by miz...@protonmail.com, thanks. diff --git