Even more sonarlint work

This commit is contained in:
Jasmine Iwanek
2023-06-01 18:32:25 -04:00
parent ef2b84ed63
commit d1127e68fa
89 changed files with 2509 additions and 1542 deletions

View File

@@ -72,7 +72,7 @@ opendir(const char *name)
}
/* All OK. */
return (p);
return p;
}
/* Close an open directory. */
@@ -80,7 +80,7 @@ int
closedir(DIR *p)
{
if (p == NULL)
return (0);
return 0;
_findclose(p->handle);
@@ -88,7 +88,7 @@ closedir(DIR *p)
free(p->dta);
free(p);
return (0);
return 0;
}
/*