Skip to content

Commit acdd3da

Browse files
Update src/verify.cpp
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 45896b9 commit acdd3da

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/verify.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,10 @@ int main(int argc, char *const *argv) {
9595
std::string token;
9696
// If a positional argument is present, treat it as the token (with warning)
9797
if (optind < argc) {
98-
fprintf(stderr, "%s: Warning: Providing the token on the command line is insecure. Please use stdin instead.\n", argv[0]);
98+
fprintf(stderr,
99+
"%s: Warning: Providing the token on the command line is "
100+
"insecure. Please use stdin instead.\n",
101+
argv[0]);
99102
token = argv[optind];
100103
} else {
101104
// Read token from stdin

0 commit comments

Comments
 (0)