From 24dda39a5dde95d7594e3e7760c5d74cf9779e8b Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Thu, 29 Sep 2005 21:12:07 +0000 Subject: (write_char_): buffer size was insufficient. --- mixgtk/mixgtk_device.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mixgtk/mixgtk_device.c') diff --git a/mixgtk/mixgtk_device.c b/mixgtk/mixgtk_device.c index 203933c..a27c5a0 100644 --- a/mixgtk/mixgtk_device.c +++ b/mixgtk/mixgtk_device.c @@ -1,9 +1,9 @@ /* -*-c-*- ---------------- mixgtk_device.c : * actual types for mixgtk devices * ------------------------------------------------------------------ - * $Id: mixgtk_device.c,v 1.26 2005/09/20 19:43:14 jao Exp $ + * $Id: mixgtk_device.c,v 1.27 2005/09/29 21:12:07 jao Exp $ * ------------------------------------------------------------------ - * Copyright (C) 2001, 2002, 2004 Free Software Foundation, Inc. + * Copyright (C) 2001, 2002, 2004, 2005 Free Software Foundation, Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -88,7 +88,7 @@ struct mixgtk_bin_device_t static void write_char_ (struct mixgtk_device_t *dev, const mix_word_t *block) { - enum {MAX_BLOCK = 16, BUFF_SIZE = MAX_BLOCK * 5 + 2}; + enum {MAX_BLOCK = 24, BUFF_SIZE = MAX_BLOCK * 5 + 2}; static gchar BUFFER[BUFF_SIZE]; guint k, j; -- cgit v1.2.3