mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-25 06:02:08 +00:00
CLEANUP: ist: Remove unused count
argument from ist2str*
This argument is not being used inside the function (and the functions themselves are unused as well) and not documented. Its purpose is not clear. Just remove it.
This commit is contained in:
parent
b8ee894b66
commit
fea59fcf79
@ -554,7 +554,7 @@ static inline struct ist ist2bin(char *dst, const struct ist src)
|
||||
* already been checked. An ist made of the output and its length (not counting
|
||||
* the trailing zero) are returned.
|
||||
*/
|
||||
static inline struct ist ist2str(char *dst, const struct ist src, size_t count)
|
||||
static inline struct ist ist2str(char *dst, const struct ist src)
|
||||
{
|
||||
size_t ofs = 0;
|
||||
|
||||
@ -599,7 +599,7 @@ static inline struct ist ist2bin_lc(char *dst, const struct ist src)
|
||||
* the frame length has already been checked. An ist made of the output and its
|
||||
* length (not counting the trailing zero) are returned.
|
||||
*/
|
||||
static inline struct ist ist2str_lc(char *dst, const struct ist src, size_t count)
|
||||
static inline struct ist ist2str_lc(char *dst, const struct ist src)
|
||||
{
|
||||
size_t ofs = 0;
|
||||
|
||||
@ -644,7 +644,7 @@ static inline struct ist ist2bin_uc(char *dst, const struct ist src)
|
||||
* the frame length has already been checked. An ist made of the output and its
|
||||
* length (not counting the trailing zero) are returned.
|
||||
*/
|
||||
static inline struct ist ist2str_uc(char *dst, const struct ist src, size_t count)
|
||||
static inline struct ist ist2str_uc(char *dst, const struct ist src)
|
||||
{
|
||||
size_t ofs = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user