From: Chris Lattner Date: Mon, 21 Jul 2003 19:20:44 +0000 (+0000) Subject: Fix warnings X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=51577e5f3a957c0e2807beddf5f7a39d512decc7 Fix warnings git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7213 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/runtime/libtrace/tracelib.c b/runtime/libtrace/tracelib.c index dce05aa2f45..537917e4acb 100644 --- a/runtime/libtrace/tracelib.c +++ b/runtime/libtrace/tracelib.c @@ -105,7 +105,7 @@ ReallocTable(PtrValueHashTable* ptrTable, Index newSize) #ifndef NDEBUG printf("\n***\n*** WARNING: REALLOCATING SPACE FOR POINTER HASH TABLE.\n"); - printf("*** oldSize = %ld, oldCapacity = %ld\n***\n\n", + printf("*** oldSize = %d, oldCapacity = %d\n***\n\n", ptrTable->size, ptrTable->capacity); printf("*** NEW SEQUENCE NUMBER FOR A POINTER WILL PROBABLY NOT MATCH "); printf(" THE OLD ONE!\n***\n\n");