diff options
author | David 'Digit' Turner <digit@android.com> | 2011-02-24 16:48:19 +0100 |
---|---|---|
committer | David 'Digit' Turner <digit@android.com> | 2011-03-01 15:07:12 +0100 |
commit | e5af8a259e619973538f393011b1c26a3e2f4afb (patch) | |
tree | 8522658803d023b6d64e066a41092956ff0cb4bc /android/snapshot.c | |
parent | 092361e19ecc2992965729538984354099eea8cb (diff) | |
download | external_qemu-e5af8a259e619973538f393011b1c26a3e2f4afb.zip external_qemu-e5af8a259e619973538f393011b1c26a3e2f4afb.tar.gz external_qemu-e5af8a259e619973538f393011b1c26a3e2f4afb.tar.bz2 |
Remove CONFIG_ANDROID_SNAPSHOTS macro.
The feature is no longer optional.
Change-Id: I4558f12e3804e42069e8a3e6bcf0837d350206ed
Diffstat (limited to 'android/snapshot.c')
-rw-r--r-- | android/snapshot.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/android/snapshot.c b/android/snapshot.c index ca86700..047465f 100644 --- a/android/snapshot.c +++ b/android/snapshot.c @@ -33,12 +33,10 @@ #include <time.h> #include <unistd.h> +#include "bswap.h" #include "android/utils/debug.h" #include "android/utils/system.h" -#include "bswap.h" -#include "snapshot.h" - -#if CONFIG_ANDROID_SNAPSHOTS +#include "android/snapshot.h" /* "Magic" sequence of four bytes required by spec to be the first four bytes * of any Qcow file. @@ -333,4 +331,3 @@ snapshot_print_and_exit( const char *snapstorage ) close(fd); exit(0); } -#endif // CONFIG_ANDROID_SNAPSHOTS |