Skip to content

Commit 066aa99

Browse files
committed
long modifier was on the wrong argument.
1 parent 8d21bdb commit 066aa99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/aidl/aidl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ test_document(document_item_type* d)
5555
printf("parcelable %s %s;\n", b->package, b->name.data);
5656
}
5757
else {
58-
printf("UNKNOWN d=0x%08x d->item_type=%ld\n", (long)d, d->item_type);
58+
printf("UNKNOWN d=0x%08lx d->item_type=%d\n", (long)d, d->item_type);
5959
}
6060
d = d->next;
6161
}

0 commit comments

Comments
 (0)