Re: [PATCH] pwdgrp.c: Removed unused variable

2021-04-28 Thread Gedare Bloom
ok On Wed, Apr 28, 2021 at 2:25 PM Ryan Long wrote: > > The 'sc' variable was originally storing the return value of mkdir(). > This was causing an issue, so it was changed to make it to where we > ignored the return value with (void). The 'sc' variable was left in > by mistake. > --- > cpukit/l

[PATCH] pwdgrp.c: Removed unused variable

2021-04-28 Thread Ryan Long
The 'sc' variable was originally storing the return value of mkdir(). This was causing an issue, so it was changed to make it to where we ignored the return value with (void). The 'sc' variable was left in by mistake. --- cpukit/libcsupport/src/pwdgrp.c | 2 -- 1 file changed, 2 deletions(-) diff