Revision: 14284 Author: adrian.chadd Date: Thu Aug 13 04:41:15 2009 Log: explicit typecast to quieten warning.
http://code.google.com/p/lusca-cache/source/detail?r=14284 Modified: /branches/LUSCA_HEAD/src/stat.c ======================================= --- /branches/LUSCA_HEAD/src/stat.c Sun Aug 9 21:22:14 2009 +++ /branches/LUSCA_HEAD/src/stat.c Thu Aug 13 04:41:15 2009 @@ -1689,7 +1689,7 @@ threadp = squidaio_get_thread_head(); for (i = 0; i < squidaio_nthreads; i++) { - storeAppendPrintf(sentry, "%i\t0x%lx\t%ld\n", i + 1, threadp->thread, threadp->requests); + storeAppendPrintf(sentry, "%i\t0x%lx\t%ld\n", i + 1, (long int) threadp->thread, threadp->requests); threadp = threadp->next; } } --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "lusca-commit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/lusca-commit?hl=en -~----------~----~----~----~------~----~------~--~---
