0001-add-missing-stdarg-include.patch 399 B

123456789101112131415161718
  1. Add missing <stdarg.h> include for va_list
  2. Fixes the build on uClibc.
  3. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
  4. Index: b/src/common/log.h
  5. ===================================================================
  6. --- a/src/common/log.h
  7. +++ b/src/common/log.h
  8. @@ -13,6 +13,7 @@
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. +#include <stdarg.h>
  12. #include "common.h"
  13. class Log