Commit fdfd9737 authored by Andy Whitcroft's avatar Andy Whitcroft Committed by Tim Gardner

UBUNTU: SAUCE: (no-up) kconfig: in debug mode some 0 length message prints occur

Has no real kernel impact, so continue to carry.

When we enable the zconfdump() debugging we see assertion failures
attempting to print the config.  Convert this into a noop.
Signed-off-by: default avatarAndy Whitcroft <apw@canonical.com>
parent 95a000be
......@@ -88,7 +88,9 @@ void set_all_choice_values(struct symbol *csym);
/* confdata.c and expr.c */
static inline void xfwrite(const void *str, size_t len, size_t count, FILE *out)
{
assert(len != 0);
//assert(len != 0);
if (len == 0)
return;
if (fwrite(str, len, count, out) != count)
fprintf(stderr, "Error in writing or end of file.\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment