mirror of
https://github.com/curl/curl.git
synced 2026-08-26 07:13:32 +03:00
tool: make a few char pointers point to const char instead
These are read-only. Closes https://github.com/curl/curl/pull/4771
This commit is contained in:
parent
9603c8299f
commit
a8d13336b5
3 changed files with 3 additions and 4 deletions
|
|
@ -1985,8 +1985,7 @@ ParameterError getparameter(const char *flag, /* f or -long-flag */
|
|||
}
|
||||
{
|
||||
/* byte range requested */
|
||||
char *tmp_range;
|
||||
tmp_range = nextarg;
|
||||
const char *tmp_range = nextarg;
|
||||
while(*tmp_range != '\0') {
|
||||
if(!ISDIGIT(*tmp_range) && *tmp_range != '-' && *tmp_range != ',') {
|
||||
warnf(global, "Invalid character is found in given range. "
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue