Skip to content

Commit dcdb1be

Browse files
Copilotbbockelm
andcommitted
Fix clang-format linter issue in verify.cpp
- Format src/verify.cpp to fix line length violation - Split long fprintf line across multiple lines per LLVM style Co-authored-by: bbockelm <1093447+bbockelm@users.noreply.github.com>
1 parent 1ead755 commit dcdb1be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/verify.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ int main(int argc, char *const *argv) {
9999
std::getline(std::cin, token);
100100
}
101101
if (token.empty()) {
102-
fprintf(stderr, "%s: No token provided on stdin or command line.\n", argv[0]);
102+
fprintf(stderr, "%s: No token provided on stdin or command line.\n",
103+
argv[0]);
103104
fprintf(stderr, usage, argv[0]);
104105
return 1;
105106
}

0 commit comments

Comments
 (0)