diff options
| author | van Hauser <vh@thc.org> | 2023-03-28 19:29:04 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-28 19:29:04 +0200 |
| commit | 661b626c87d623fe67db854d43d4ff37c3895109 (patch) | |
| tree | 2e835bdf34f923dea7a511abaace3763edddaeab /.custom-format.py | |
| parent | 214e24fff0e44704007e71dee8384f6382770381 (diff) | |
| parent | 67e8c4f100903bf8111435f0ce574806d961cbad (diff) | |
| download | afl++-661b626c87d623fe67db854d43d4ff37c3895109.tar.gz | |
Merge pull request #1686 from tuliom/minor-fixes
Minor fixes
Diffstat (limited to '.custom-format.py')
| -rwxr-xr-x | .custom-format.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.custom-format.py b/.custom-format.py index d07c26df..1295ce55 100755 --- a/.custom-format.py +++ b/.custom-format.py @@ -40,7 +40,7 @@ def check_clang_format_pip_version(): if importlib.util.find_spec('clang_format'): # Check if the installed version is the expected LLVM version if importlib.metadata.version('clang-format')\ - .startswith(CURRENT_LLVM+'.'): + .startswith(str(CURRENT_LLVM)+'.'): return True else: # Return False, because the clang-format version does not match |
