aboutsummaryrefslogtreecommitdiff
path: root/modules/pdp_spigot.c
diff options
context:
space:
mode:
authorN.N. <sevyves@users.sourceforge.net>2006-12-11 23:14:28 +0000
committerN.N. <sevyves@users.sourceforge.net>2006-12-11 23:14:28 +0000
commit34a5c986ebab45f06258b6da12e0258ad570a67b (patch)
tree339cddaf82668a7107ed6b43b5e5b69fbee98391 /modules/pdp_spigot.c
parentd59ffe67300cdfa49dd82dcc7264fa09bd646b30 (diff)
fixed warnings and added newer quicktime
svn path=/trunk/externals/pidip/; revision=6809
Diffstat (limited to 'modules/pdp_spigot.c')
-rw-r--r--modules/pdp_spigot.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/pdp_spigot.c b/modules/pdp_spigot.c
index 4fd5d6a..376aeb8 100644
--- a/modules/pdp_spigot.c
+++ b/modules/pdp_spigot.c
@@ -35,12 +35,12 @@ typedef struct pdp_spigot_struct
t_outlet *x_outlet0;
t_outlet *x_outlet1;
- t_int x_vwidth;
- t_int x_vheight;
- t_int x_vsize;
+ int x_vwidth;
+ int x_vheight;
+ int x_vsize;
- t_int x_packet0;
- t_int x_toggle;
+ int x_packet0;
+ int x_toggle;
} t_pdp_spigot;
@@ -58,7 +58,7 @@ static void pdp_spigot_process_packet(t_pdp_spigot *x)
short int *data = (short int *)pdp_packet_data(x->x_packet0);
t_pdp *newheader = 0;
short int *newdata = 0;
- t_int newpacket = -1, i;
+ int newpacket = -1, i;
x->x_vwidth = header->info.image.width;
x->x_vheight = header->info.image.height;