diff options
author | Martin Peach <mrpeach@users.sourceforge.net> | 2014-11-10 22:05:43 +0000 |
---|---|---|
committer | Martin Peach <mrpeach@users.sourceforge.net> | 2014-11-10 22:05:43 +0000 |
commit | 63f6b4ba0850e106fd7b4ed98d1623e6eecc3c9e (patch) | |
tree | a1cc65f6a5632d9d09b2f12309c153f3889de322 | |
parent | c2bacd723704c3601543044e1c63c12aee9b28ac (diff) |
Changed t_int to int
svn path=/trunk/externals/mrpeach/; revision=17377
-rw-r--r-- | slipdec/slipdec.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/slipdec/slipdec.c b/slipdec/slipdec.c index ce80cce..8aeb1c3 100644 --- a/slipdec/slipdec.c +++ b/slipdec/slipdec.c @@ -21,11 +21,11 @@ typedef struct _slipdec t_outlet *x_slipdec_out; t_outlet *x_status_out; t_atom *x_slip_buf; - t_int x_slip_length; - t_int x_slip_max_length; - t_int x_valid_SLIP; - t_int x_esced; - t_int x_verbose; + int x_slip_length; + int x_slip_max_length; + int x_valid_SLIP; + int x_esced; + int x_verbose; } t_slipdec; static void *slipdec_new(t_symbol *s, int argc, t_atom *argv); |