diff options
-rw-r--r-- | src/mtx_matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mtx_matrix.c b/src/mtx_matrix.c index 277b7ac..44afc9e 100644 --- a/src/mtx_matrix.c +++ b/src/mtx_matrix.c @@ -484,7 +484,7 @@ static void matrix_read(t_matrix *x, t_symbol *filename) static void matrix_write(t_matrix *x, t_symbol *filename) { t_atom *ap=x->atombuffer+2; - char *filnam = (char*)getbytes(sizeof(char)*MAXPDSTRING);; + char *filnam = (char*)getbytes(sizeof(char)*MAXPDSTRING); int rows = x->row, cols = x->col; FILE *f=0; |