Skip to content

Commit 675b782

Browse files
authored
Merge pull request #145 from isghe/minor_fix_missing_carriage_return
minor: fix missing carriage return in help text
2 parents b9288fc + 9ed2be2 commit 675b782

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

btcdeb.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ int main(int argc, char* const* argv)
149149
fprintf(stderr, "The --allow-disabled-opcodes flag enables experimental support for OP_CAT, OP_2MUL, etc (disabled in Bitcoin)\n");
150150
fprintf(stderr, "You can modify verification flags using the --modify-flags command. separate flags using comma (,). prefix with + to enable, - to disable. e.g. --modify-flags=\"-NULLDUMMY,-MINIMALIF\"\n");
151151
fprintf(stderr, "You can set the environment variables DEBUG_SIGHASH, DEBUG_SIGNING, and DEBUG_SEGWIT to increase verbosity for the respective areas.\n");
152-
fprintf(stderr, "The standard (enabled by default) flags can be reviewed by typing %s --default-flags or %s -d", argv[0], argv[0]);
152+
fprintf(stderr, "The standard (enabled by default) flags can be reviewed by typing %s --default-flags or %s -d\n", argv[0], argv[0]);
153153
fprintf(stderr, "The --verbose flag will turn btcdeb into a helpful hintful chatter-box in various situations.\n");
154154
return 0;
155155
} else if (ca.m.count('d')) {

0 commit comments

Comments
 (0)