mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 04:50:01 -04:00
silence "Value stored to 'length' is never read" by removing assignment
(cherry picked from commit 2e6d7a724a)
This commit is contained in:
parent
3f05845322
commit
dcb7b3ce31
1 changed files with 1 additions and 1 deletions
|
|
@ -117,7 +117,7 @@ isc_print_vsnprintf(char *str, size_t size, const char *format, va_list ap) {
|
|||
dot = neg = space = plus = left = zero = alt = h = l = q = 0;
|
||||
width = precision = 0;
|
||||
head = "";
|
||||
length = pad = zeropad = 0;
|
||||
pad = zeropad = 0;
|
||||
|
||||
do {
|
||||
if (*format == '#') {
|
||||
|
|
|
|||
Loading…
Reference in a new issue