aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAndy Whitcroft <apw@canonical.com>2012-05-03 16:01:39 +0100
committerJohn Rigby <john.rigby@linaro.org>2012-11-14 18:19:25 -0700
commit1b01678f142c2e289b344b72fcb72b4c041134b7 (patch)
tree62f2e72fad31c7a5bd230b93284a8f47ed03e909 /scripts
parente6032714a98dd8bede28f1be602453b5eaf23f04 (diff)
kconfig: in debug mode some 0 length message prints occur
When we enable the zconfdump() debugging we see assertion failures attempting to print the config. Convert this into a noop. Signed-off-by: Andy Whitcroft <apw@canonical.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/kconfig/lkc.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/kconfig/lkc.h b/scripts/kconfig/lkc.h
index c18f2bd9c09..608cf6558bd 100644
--- a/scripts/kconfig/lkc.h
+++ b/scripts/kconfig/lkc.h
@@ -90,7 +90,9 @@ struct conf_printer {
/* 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");