summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2011-06-16 17:40:24 -0400
committerAdam Jackson <ajax@redhat.com>2012-01-06 13:29:53 -0500
commitd5f724544afd2949cebfcf4f0b4510ec0c701bec (patch)
tree0649d92e94610830361b813cb242fb359fc61a18
parent98cde254acb9b98337ddecf64c138d38c14ec2bf (diff)
os: Repack ConnectionOutput for LP64
Reviewed-by: Daniel Stone <daniel@fooishbar.org> Signed-off-by: Adam Jackson <ajax@redhat.com>
-rw-r--r--os/osdep.h2
1 files changed, 1 insertions, 1 deletions
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;