unix: whitespace cleanup

This commit is contained in:
Jōshin 2022-01-29 22:50:36 -06:00
parent c8f8ced249
commit 3d36582fda
No known key found for this signature in database
GPG Key ID: A8BE5A9A521639D0

View File

@ -460,12 +460,12 @@ _unix_scan_mount_point(u3_unix* unx_u, u3_umon* mon_u)
}
}
else {
if ( '.' != out_u->d_name[len_w]
|| '\0' == out_u->d_name[len_w + 1]
|| '~' == out_u->d_name[strlen(out_u->d_name) - 1]
|| ('#' == out_u->d_name[0] &&
'#' == out_u->d_name[strlen(out_u->d_name) - 1])
) {
if ( '.' != out_u->d_name[len_w]
|| '\0' == out_u->d_name[len_w + 1]
|| '~' == out_u->d_name[strlen(out_u->d_name) - 1]
|| ('#' == out_u->d_name[0] &&
'#' == out_u->d_name[strlen(out_u->d_name) - 1]) )
{
c3_free(pax_c);
continue;
}