From 1d1a2b7f9ccd2bd6975d5a30557d0be284b18314 Mon Sep 17 00:00:00 2001 From: Martin Peach Date: Wed, 3 Nov 2010 21:37:45 +0000 Subject: changed long to int in the tag struct, as longs are 8 bytes in 64-bit architectures. svn path=/trunk/externals/mrpeach/; revision=14261 --- net/udpsend~.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/net/udpsend~.h b/net/udpsend~.h index 386b363..927dc48 100644 --- a/net/udpsend~.h +++ b/net/udpsend~.h @@ -84,12 +84,12 @@ typedef union _flint typedef struct _tag { /* size (bytes) */ - char tag[4]; /* 4 */ /*"TAG!"*/ - char format; /* 1 */ - long count; /* 4 */ - char channels; /* 1 */ - long framesize; /* 4 */ - char reserved[2]; /* 2 */ /* pad to 16 bytes */ + char tag[4]; /* 4 */ /*"TAG!"*/ + char format; /* 1 */ + int count; /* 4 */ + char channels; /* 1 */ + int framesize; /* 4 */ + char reserved[2]; /* 2 */ /* pad to 16 bytes */ } t_tag; /*-----*/ /* 16 */ -- cgit v1.2.1