From d5f724544afd2949cebfcf4f0b4510ec0c701bec Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Thu, 16 Jun 2011 17:40:24 -0400 Subject: [PATCH] os: Repack ConnectionOutput for LP64 Reviewed-by: Daniel Stone Signed-off-by: Adam Jackson --- os/osdep.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/osdep.h b/os/osdep.h index 71a7e44e3..5fe019f5f 100644 --- a/os/osdep.h +++ b/os/osdep.h @@ -124,8 +124,8 @@ typedef struct _connectionInput { typedef struct _connectionOutput { struct _connectionOutput *next; - int size; unsigned char *buf; + int size; int count; } ConnectionOutput, *ConnectionOutputPtr;