Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0a26aaad authored by Jean-Baptiste Queru's avatar Jean-Baptiste Queru Committed by Android Code Review
Browse files

Merge "long modifier was on the wrong argument."

parents 561b1e42 066aa99d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    }