summaryrefslogtreecommitdiff
path: root/os
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2011-06-16 17:40:24 -0400
committerAdam Jackson <ajax@redhat.com>2012-09-20 14:36:36 -0400
commit3f7bc222638d5d38324ecbc8c2c4e39af17d110e (patch)
tree2b0961310c5e87ae48994ae95356c59e8526787d /os
parent5109c7f6581b3e4e23700bfd03b4daf0ba97630e (diff)
os: Repack ConnectionOutput for LP64
Reviewed-by: Daniel Stone <daniel@fooishbar.org> Signed-off-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'os')
-rw-r--r--os/osdep.h2
1 files changed, 1 insertions, 1 deletions
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;