From 3f7bc222638d5d38324ecbc8c2c4e39af17d110e 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 fff088701..587bd0359 100644 --- a/os/osdep.h +++ b/os/osdep.h @@ -119,8 +119,8 @@ typedef struct _connectionInput { typedef struct _connectionOutput { struct _connectionOutput *next; - int size; unsigned char *buf; + int size; int count; } ConnectionOutput, *ConnectionOutputPtr;