mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-12 13:30:12 -05:00
huge correction of tabulators and whitespaces
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
b37ac0982b
commit
66a3d542ac
157 changed files with 2008 additions and 2008 deletions
|
|
@ -11,7 +11,7 @@ void normalize(struct timeval *tv)
|
|||
} else if (tv->tv_sec < 0) {
|
||||
while (tv->tv_usec <= -1000000) { tv->tv_usec += 1000000; --tv->tv_sec; }
|
||||
while (tv->tv_usec > 0) { tv->tv_usec -= 1000000; ++tv->tv_sec; }
|
||||
} else {
|
||||
} else {
|
||||
while (tv->tv_usec >= 1000000) { tv->tv_usec -= 1000000; ++tv->tv_sec; }
|
||||
while (tv->tv_usec < 0) { tv->tv_usec += 1000000; --tv->tv_sec; }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue