[FORMATTING][NTOS][HAL][DRIVERS][SDK] Fix trailing spaces

This commit is contained in:
Victor Perevertkin 2021-06-11 15:29:21 +03:00
parent 4b4ffa92f5
commit 34593d933b
No known key found for this signature in database
GPG key ID: C750B7222E9C7830
952 changed files with 12942 additions and 12942 deletions

View file

@ -58,7 +58,7 @@ int adns_inet_aton(const char *cp, struct in_addr *inp)
if (!cp || !*cp || !inp)
{
errno = EINVAL;
return -1;
return -1;
}
if (!strcmp(cp, "255.255.255.255"))
@ -98,7 +98,7 @@ int gettimeofday(struct timeval *tv, struct timezone *tz)
now -= Adjustment;
tv->tv_sec = (long)(now / 10000000);
tv->tv_usec = (long)((now % 10000000) / 10);
tv->tv_usec = (long)((now % 10000000) / 10);
return 0;
}