aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMark Salyzyn <salyzyn@google.com>2014-03-14 09:39:48 -0700
committerMark Salyzyn <salyzyn@google.com>2014-03-14 13:51:39 -0700
commitf3bb31c32fa879ccce358c15c93b7bd8582d1756 (patch)
tree0ce9c3520be76db70f29a63fca0b895a028934af /tools
parenta7266ef0b1804e3ddeea58bda9a416e807a55f88 (diff)
downloadbootable_recovery-f3bb31c32fa879ccce358c15c93b7bd8582d1756.zip
bootable_recovery-f3bb31c32fa879ccce358c15c93b7bd8582d1756.tar.gz
bootable_recovery-f3bb31c32fa879ccce358c15c93b7bd8582d1756.tar.bz2
Recovery 64-bit compile issues
Change-Id: I92d5abd1a628feab3b0246924fab7f97ba3b9d34
Diffstat (limited to 'tools')
-rw-r--r--tools/ota/add-property-tag.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/ota/add-property-tag.c b/tools/ota/add-property-tag.c
index 5277edd..aab30b2 100644
--- a/tools/ota/add-property-tag.c
+++ b/tools/ota/add-property-tag.c
@@ -57,9 +57,9 @@ void write_tagged(FILE *out, const char *line, const char *tag, int number) {
const char *end = line + strlen(line);
while (end > line && isspace(end[-1])) --end;
if (number > 0) {
- fprintf(out, "%.*s%s%d%s", end - line, line, tag, number, end);
+ fprintf(out, "%.*s%s%d%s", (int)(end - line), line, tag, number, end);
} else {
- fprintf(out, "%.*s%s%s", end - line, line, tag, end);
+ fprintf(out, "%.*s%s%s", (int)(end - line), line, tag, end);
}
}