diff options
author | Elliott Hughes <enh@google.com> | 2015-08-25 19:34:13 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2015-08-25 19:34:13 -0700 |
commit | 3ab8b859c24fcdee49a48ded183e42690775eedd (patch) | |
tree | ba797a09f3800e8e3b68b56f0fc098a58f3bab6d /fastboot | |
parent | 04b94b2571a0f90b55140f2d2748f2876fdfa408 (diff) | |
download | core-3ab8b859c24fcdee49a48ded183e42690775eedd.tar.gz core-3ab8b859c24fcdee49a48ded183e42690775eedd.tar.bz2 core-3ab8b859c24fcdee49a48ded183e42690775eedd.zip |
Fix missing <stdarg.h>.
system/core/fastboot/engine.cpp:84:5: error: use of undeclared identifier 'va_start'
Change-Id: I8aff9a40d33f403c0d0d91a15638863fe24dca2e
Diffstat (limited to 'fastboot')
-rw-r--r-- | fastboot/engine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fastboot/engine.cpp b/fastboot/engine.cpp index bda6ad8e1..a0e990a85 100644 --- a/fastboot/engine.cpp +++ b/fastboot/engine.cpp @@ -30,6 +30,7 @@ #include "fs.h" #include <errno.h> +#include <stdarg.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |