Re: [hackers] [sbase] libutil/recurse: Use while-loop instead of for-loop with only condition || Michael Forney

2019-12-29 Thread Michael Forney
On 2019-12-29, Quentin Rameau wrote: > The patch itself shows that, could you explain what it fixes or improve > in your commit messages? It fixes the stylistic issue that a for-loop is used with only a condition (no initialization or increment expression), which is just an unconventional way of

Re: [hackers] [sbase] libutil/recurse: Use while-loop instead of for-loop with only condition || Michael Forney

2019-12-29 Thread Quentin Rameau
> Author: Michael Forney Hi Michael, > libutil/recurse: Use while-loop instead of for-loop with only condition The patch itself shows that, could you explain what it fixes or improve in your commit messages? Thanks. > diff --git a/libutil/recurse.c b/libutil/recurse.c > index

[hackers] [sbase] libutil/recurse: Use while-loop instead of for-loop with only condition || Michael Forney

2019-12-28 Thread git
commit 60895834f011acb7ec3d6ef6e35f2daa23007ff9 Author: Michael Forney AuthorDate: Sat Dec 28 22:35:49 2019 -0800 Commit: Michael Forney CommitDate: Sat Dec 28 22:38:17 2019 -0800 libutil/recurse: Use while-loop instead of for-loop with only condition diff --git a/libutil/recurse.c