aboutsummaryrefslogtreecommitdiffstats
path: root/android/snapshot.c
diff options
context:
space:
mode:
authorDavid 'Digit' Turner <digit@android.com>2011-05-05 09:39:18 -0700
committerAndroid Code Review <code-review@android.com>2011-05-05 09:39:18 -0700
commitcee98de91c5380efbc321bf01a6025675fbed748 (patch)
tree18d82249eea519f169a89f1e10c58d7e8843f3d0 /android/snapshot.c
parentb456b97319e2ed709a875cec198f02bd0145df72 (diff)
parentd80a7861fe5e21e3dcb80480a77b033e6b307dd5 (diff)
downloadexternal_qemu-cee98de91c5380efbc321bf01a6025675fbed748.zip
external_qemu-cee98de91c5380efbc321bf01a6025675fbed748.tar.gz
external_qemu-cee98de91c5380efbc321bf01a6025675fbed748.tar.bz2
Merge "Fix -snapshot-list option."
Diffstat (limited to 'android/snapshot.c')
-rw-r--r--android/snapshot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/snapshot.c b/android/snapshot.c
index 047465f..d02d9a8 100644
--- a/android/snapshot.c
+++ b/android/snapshot.c
@@ -310,7 +310,7 @@ snapshot_print_and_exit( const char *snapstorage )
{
/* open snapshot file */
int fd = open(snapstorage, O_RDONLY);
- if (!fd) {
+ if (fd < 0) {
derror("Could not open snapshot file '%s': %s", snapstorage, strerror(errno));
exit(1);
}