~n-muench/ubuntu/oneiric/open-vm-tools/open-vm-tools.fix-836277

« back to all changes in this revision

Viewing changes to lib/include/vmxrpc.h

  • Committer: Evan Broder
  • Date: 2010-03-21 23:26:53 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: broder@mit.edu-20100321232653-5a57r7v7ch4o6byv
Merging shared upstream rev into target branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
xdr_int8(XDR *xdrs,  // IN
67
67
         int8 *ip)   // IN/OUT
68
68
{
69
 
   return xdr_char(xdrs, ip);
 
69
   /* XDR doesn't seem to have a "signed char" representation. */
 
70
   return xdr_char(xdrs, (char*)ip);
70
71
}
71
72
 
72
73