diff options
| author | Elliott Hughes <enh@google.com> | 2014-01-16 21:59:58 +0000 |
|---|---|---|
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-01-16 21:59:58 +0000 |
| commit | 7cd1561410473c71d40cec822fb53a282b5b3279 (patch) | |
| tree | bdaf3ae42a503b2968f211a0d47f1c7fb3fc5d0e /fs_mgr | |
| parent | 7580661df179eb037c0dbe96e3bde1bc9e6bfbdc (diff) | |
| parent | ccecf1425412beb2bc3bb38d470293fdc244d6f1 (diff) | |
| download | system_core-7cd1561410473c71d40cec822fb53a282b5b3279.tar.gz system_core-7cd1561410473c71d40cec822fb53a282b5b3279.tar.bz2 system_core-7cd1561410473c71d40cec822fb53a282b5b3279.zip | |
Merge "system/core 64-bit cleanup."
Diffstat (limited to 'fs_mgr')
| -rw-r--r-- | fs_mgr/fs_mgr_verity.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs_mgr/fs_mgr_verity.c b/fs_mgr/fs_mgr_verity.c index 969eab2a0..154931684 100644 --- a/fs_mgr/fs_mgr_verity.c +++ b/fs_mgr/fs_mgr_verity.c @@ -14,6 +14,7 @@ * limitations under the License. */ +#include <inttypes.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -178,7 +179,7 @@ static int read_verity_metadata(char *block_device, char **signature, char **tab goto out; } if (magic_number != VERITY_METADATA_MAGIC_NUMBER) { - ERROR("Couldn't find verity metadata at offset %llu!\n", device_length); + ERROR("Couldn't find verity metadata at offset %"PRIu64"!\n", device_length); goto out; } |
