ossp-pkg/xds/vencode.c 1.9 -> 1.10
--- vencode.c 2001/07/18 17:49:51 1.9
+++ vencode.c 2001/07/19 15:21:35 1.10
@@ -25,8 +25,6 @@
SUCH DAMAGE.
*/
-#include <stdio.h> /* delete me */
-
#include <string.h>
#include <ctype.h>
#include <assert.h>
@@ -62,7 +60,6 @@
assert(rc == XDS_OK || rc == XDS_ERR_NO_MEM);
if (rc != XDS_OK)
return rc;
- printf("Setting up buffer with capacity %d byte.\n", xds->buffer_capacity);
xds->buffer_len = 0;
xds->we_own_buffer = XDS_FALSE;
}
@@ -82,7 +79,6 @@
assert(rc == XDS_OK || rc == XDS_ERR_NO_MEM);
if (rc != XDS_OK)
return rc;
- printf("Enlarged buffer to %d byte.\n", xds->buffer_capacity);
}
else
return XDS_ERR_OVERFLOW;
@@ -111,7 +107,6 @@
int restart_engine;
do
{
- printf("Executing engine '%s' ...\n", name);
args_backup = args;
rc = (*xds->engines[pos].engine)(xds,
xds->engines[pos].context,
@@ -149,7 +144,6 @@
rc = rc2;
goto leave;
}
- printf("Enlarged buffer to %d byte.\n", xds->buffer_capacity);
}
else
{
|
|