diff options
| author | 2010-05-10 12:53:28 -0700 | |
|---|---|---|
| committer | 2010-05-10 12:53:28 -0700 | |
| commit | 38a410f12a1cbb5f49cdee6323da898b11c907e7 (patch) | |
| tree | c9788b232d34c67ad000aea477c6fa84dd7a22f4 | |
| parent | 4000e06ef69bb1523532b73c469c52b8b8d317ce (diff) | |
| parent | 686d9ff53c32ded9b2b02eb9f2040f2030846e51 (diff) | |
am 686d9ff5: merge from open-source master
Merge commit '686d9ff53c32ded9b2b02eb9f2040f2030846e51' into kraken
* commit '686d9ff53c32ded9b2b02eb9f2040f2030846e51':
Use isLocationProviderEnabled to test for enabled providers
Added WEB_URL_PATTERN for Montenegro ".me"
long modifier was on the wrong argument.
| -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 fc658f5b54fb..f17f66b31f8e 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; } |