Skip to content

Commit

Permalink
Merge pull request #97 from pks-t/pks-whitespace-fixes
Browse files Browse the repository at this point in the history
global: fix whitespace errors
  • Loading branch information
ethomson authored Aug 15, 2024
2 parents faa8419 + b7e3a1c commit 1516124
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion clar/fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ fs_rm_wait(WCHAR *_wpath)
ERROR_PATH_NOT_FOUND == last_error)
return 0;

Sleep(RM_RETRY_DELAY * retries * retries);
Sleep(RM_RETRY_DELAY * retries * retries);
}
while (retries++ <= RM_RETRY_COUNT);

Expand Down
5 changes: 2 additions & 3 deletions clar/sandbox.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ find_tmp_path(char *buffer, size_t length)
static const size_t var_count = 5;
static const char *env_vars[] = {
"CLAR_TMP", "TMPDIR", "TMP", "TEMP", "USERPROFILE"
};
};

size_t i;
size_t i;

for (i = 0; i < var_count; ++i) {
const char *env = getenv(env_vars[i]);
Expand Down Expand Up @@ -151,4 +151,3 @@ const char *clar_sandbox_path(void)
{
return _clar_path;
}

1 change: 0 additions & 1 deletion generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,4 +264,3 @@ def write(self):
suite.disable(options.excluded)
if suite.write():
print("Written `clar.suite` (%d tests in %d suites)" % (suite.callback_count(), suite.suite_count()))

1 change: 0 additions & 1 deletion test/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ clar.suite
.clarcache
clar_test
*.o

0 comments on commit 1516124

Please sign in to comment.