diff options
author | Keith Packard <keithp@keithp.com> | 2012-01-12 12:10:07 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-01-12 12:10:07 -0800 |
commit | 5de0c2582f9c80874b4f4a5b86d250059bfaa85b (patch) | |
tree | c85ad66cf526f259ffaed63151732a650d01f369 /os | |
parent | 11331305d4acd117b71502e45c0e86684fa9280b (diff) |
Revert "os: Repack ConnectionOutput for LP64"
This reverts commit d5f724544afd2949cebfcf4f0b4510ec0c701bec.
ABI change pended for 1.13
Diffstat (limited to 'os')
-rw-r--r-- | os/osdep.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/osdep.h b/os/osdep.h index 3f774c2ac..70e2a0726 100644 --- a/os/osdep.h +++ b/os/osdep.h @@ -120,8 +120,8 @@ typedef struct _connectionInput { typedef struct _connectionOutput { struct _connectionOutput *next; - unsigned char *buf; int size; + unsigned char *buf; int count; } ConnectionOutput, *ConnectionOutputPtr; |