You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2011/04/07 01:53:48 UTC

svn commit: r1089682 - /trafficserver/traffic/trunk/iocore/cluster/ClusterProcessor.cc

Author: zwoop
Date: Wed Apr  6 23:53:48 2011
New Revision: 1089682

URL: http://svn.apache.org/viewvc?rev=1089682&view=rev
Log:
Hopefully fix the build problems on 32-bit (patch by john)

Modified:
    trafficserver/traffic/trunk/iocore/cluster/ClusterProcessor.cc

Modified: trafficserver/traffic/trunk/iocore/cluster/ClusterProcessor.cc
URL: http://svn.apache.org/viewvc/trafficserver/traffic/trunk/iocore/cluster/ClusterProcessor.cc?rev=1089682&r1=1089681&r2=1089682&view=diff
==============================================================================
--- trafficserver/traffic/trunk/iocore/cluster/ClusterProcessor.cc (original)
+++ trafficserver/traffic/trunk/iocore/cluster/ClusterProcessor.cc Wed Apr  6 23:53:48 2011
@@ -205,7 +205,7 @@ ClusterProcessor::free_remote_data(char 
   int data_hdr = ClusterControl::DATA_HDR;
 
   ink_release_assert(*((uint8_t *) (d - data_hdr + 1)) == (uint8_t) ALLOC_DATA_MAGIC);
-  char size_index = *(d - data_hdr);
+  unsigned char size_index = *(d - data_hdr);
   if (!(size_index & 0x80)) {
     ink_release_assert(size_index <= (DEFAULT_BUFFER_SIZES - 1));
   } else {