recovery: Add the missing #include.

Although I checked there's no reference to 'stage' in device-specific
recovery codes (for commit a8d72bc3b4),
it's insufficient to capture the missing #include issue.

Test: lunch aosp_dragon-userdebug; mmma bootable/recovery
Change-Id: I4c5dbe9acf38918491c3aa776ce358be03f9ecca
This commit is contained in:
Tao Bao 2017-03-07 13:32:30 -08:00
parent 9bd1dced90
commit ed4a537bf0

View file

@ -20,6 +20,8 @@
#include <stdio.h>
#include <stdarg.h>
#include <string>
#define STRINGIFY(x) #x
#define EXPAND(x) STRINGIFY(x)