diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2014-06-10 20:27:13 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2014-06-10 20:27:13 +0000 |
commit | 713b83f7b406858269863d92865b715470d6335c (patch) | |
tree | 79eb2733939d29388f0776f68da4b053427a61c9 /src/htshelp.c | |
parent | 82e61ae9d68114bdcd6fafdb8bf823ae9ce69bef (diff) |
Added the following compiler flags:
* -Wcast-qual
* -Wmissing-parameter-type
* -Wold-style-definition
Diffstat (limited to 'src/htshelp.c')
-rw-r--r-- | src/htshelp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htshelp.c b/src/htshelp.c index 2416030..acd0e3c 100644 --- a/src/htshelp.c +++ b/src/htshelp.c @@ -272,7 +272,7 @@ void help_wizard(httrackp * opt) { if (strnotempty(str)) { while((a = strchr(str, ' '))) *a = ':'; // port - if (!strchr(jump_identification(str), ':')) { + if (!strchr(jump_identification_const(str), ':')) { char str2[256]; printf("\nProxy port (return=8080) :"); |