diff options
| author | Elliott Hughes <enh@google.com> | 2014-01-16 10:53:11 -0800 |
|---|---|---|
| committer | Elliott Hughes <enh@google.com> | 2014-01-16 12:54:18 -0800 |
| commit | ccecf1425412beb2bc3bb38d470293fdc244d6f1 (patch) | |
| tree | 9fd922197bc88bed453efa0738f3dfb5d6db4c3c /fs_mgr | |
| parent | e847f429f43ae56aaa406697ca603c8469e2100b (diff) | |
| download | system_core-ccecf1425412beb2bc3bb38d470293fdc244d6f1.tar.gz system_core-ccecf1425412beb2bc3bb38d470293fdc244d6f1.tar.bz2 system_core-ccecf1425412beb2bc3bb38d470293fdc244d6f1.zip | |
system/core 64-bit cleanup.
This cleans up most of the size-related problems in system/core.
There are still a few changes needed for a clean 64-bit build,
but they look like they might require changes to things like the
fastboot protocol.
Change-Id: I1560425a289fa158e13e2e3173cc3e71976f92c0
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; } |
