diff options
author | Scott Turner <scotty@l5computing.com> | 2010-01-14 21:05:17 -0500 |
---|---|---|
committer | Scott Turner <scotty@l5computing.com> | 2010-01-14 21:05:17 -0500 |
commit | 066aa99d2d114d46406e00fcc23d193d117395b1 (patch) | |
tree | 6ca5d1b11673836976a151c414677ea626b1b3cf /tools/aidl | |
parent | 8d21bdb90573ec48491c44eca312c162e262298d (diff) | |
download | frameworks_base-066aa99d2d114d46406e00fcc23d193d117395b1.zip frameworks_base-066aa99d2d114d46406e00fcc23d193d117395b1.tar.gz frameworks_base-066aa99d2d114d46406e00fcc23d193d117395b1.tar.bz2 |
long modifier was on the wrong argument.
Diffstat (limited to 'tools/aidl')
-rw-r--r-- | tools/aidl/aidl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aidl/aidl.cpp b/tools/aidl/aidl.cpp index fc658f5..f17f66b 100644 --- a/tools/aidl/aidl.cpp +++ b/tools/aidl/aidl.cpp @@ -55,7 +55,7 @@ test_document(document_item_type* d) printf("parcelable %s %s;\n", b->package, b->name.data); } else { - printf("UNKNOWN d=0x%08x d->item_type=%ld\n", (long)d, d->item_type); + printf("UNKNOWN d=0x%08lx d->item_type=%d\n", (long)d, d->item_type); } d = d->next; } |