Make whitespace more consistent in libkqueue tests.

After r337820, which "corrected" some spaces-instead-of-tab whitespace
issues in the libkqueue tests, jmg@ pointed out that these files were
originally space-based, not tab-spaced, and so the correction should
have been to get rid of the tabs that had been introduced in previous
changes, not the spaces. This change does that. This is a whitespace
only change; no functional change is intended.

Reported by:	jmg@
MFC after:	3 days
Sponsored by:	Dell EMC Isilon
This commit is contained in:
David Bright 2018-11-27 15:12:34 +00:00
parent cdd2df880d
commit d340488122
6 changed files with 123 additions and 126 deletions

View File

@ -34,7 +34,6 @@ int kqfd;
static long
now(void)
{
struct timeval tv;
gettimeofday(&tv, NULL);
@ -47,7 +46,6 @@ now(void)
void
mssleep(int t)
{
struct timespec stime = {
.tv_sec = 0,
.tv_nsec = US_TO_NS(MS_TO_US(t)),
@ -62,7 +60,6 @@ mssleep(int t)
void
ussleep(int t)
{
struct timespec stime = {
.tv_sec = 0,
.tv_nsec = US_TO_NS(t),