diff options
author | N.N. <sevyves@users.sourceforge.net> | 2006-12-11 23:14:28 +0000 |
---|---|---|
committer | N.N. <sevyves@users.sourceforge.net> | 2006-12-11 23:14:28 +0000 |
commit | 34a5c986ebab45f06258b6da12e0258ad570a67b (patch) | |
tree | 339cddaf82668a7107ed6b43b5e5b69fbee98391 /modules/pdp_underwatch.c | |
parent | d59ffe67300cdfa49dd82dcc7264fa09bd646b30 (diff) |
fixed warnings and added newer quicktime
svn path=/trunk/externals/pidip/; revision=6809
Diffstat (limited to 'modules/pdp_underwatch.c')
-rw-r--r-- | modules/pdp_underwatch.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/modules/pdp_underwatch.c b/modules/pdp_underwatch.c index c999ceb..35075c3 100644 --- a/modules/pdp_underwatch.c +++ b/modules/pdp_underwatch.c @@ -37,21 +37,21 @@ typedef struct pdp_underwatch_struct t_float x_f; t_outlet *x_outlet0; - t_int x_packet0; - t_int x_packet1; - t_int x_dropped; - t_int x_queue_id; - - t_int x_vwidth; - t_int x_vheight; - t_int x_vsize; - t_int x_line; - t_int x_sline; - t_int x_sheight; - t_int x_prevline; - t_int x_prevsline; - t_int x_prevsheight; - t_int x_stripsize; + int x_packet0; + int x_packet1; + int x_dropped; + int x_queue_id; + + int x_vwidth; + int x_vheight; + int x_vsize; + int x_line; + int x_sline; + int x_sheight; + int x_prevline; + int x_prevsline; + int x_prevsheight; + int x_stripsize; } t_pdp_underwatch; |