Remove stray newline from err() call.
err() does this itself, and includes strerror() too. Test: treehugger Change-Id: I0e844f9cc3992e80a302b2f3ca1084b165582a9b
This commit is contained in:
parent
720007ba43
commit
a8e259db66
1 changed files with 1 additions and 2 deletions
|
@ -111,8 +111,7 @@ static int print_possible_events(int fd, int print_flags)
|
|||
break;
|
||||
bits_size = res + 16;
|
||||
bits = realloc(bits, bits_size * 2);
|
||||
if(bits == NULL)
|
||||
err(1, "failed to allocate buffer of size %d\n", (int)bits_size);
|
||||
if (bits == NULL) err(1, "failed to allocate buffer of size %zd", bits_size);
|
||||
}
|
||||
res2 = 0;
|
||||
switch(i) {
|
||||
|
|
Loading…
Reference in a new issue