ossp-pkg/xds/register.c 1.4 -> 1.5
--- register.c 2001/07/08 15:28:51 1.4
+++ register.c 2001/07/08 15:37:13 1.5
@@ -25,8 +25,6 @@
SUCH DAMAGE.
*/
-#include <stdio.h> /* delete me */
-
#include <stdlib.h>
#include <string.h>
#include <assert.h>
@@ -36,11 +34,6 @@
{
size_t pos;
- printf("*** Inserting '%s' ...\n", name);
- printf("Before the insertion:\n");
- for (pos = 0; pos < xds->engines_len; ++pos)
- printf("\tengines[%d] = '%s'\n", pos, xds->engines[pos].name);
-
/* Sanity checks. */
assert(xds != NULL);
@@ -81,11 +74,6 @@
xds->engines[pos].engine = engine;
xds->engines[pos].context = engine_context;
- printf("After the insertion:\n");
- for (pos = 0; pos < xds->engines_len; ++pos)
- printf("\tengines[%d] = '%s'\n", pos, xds->engines[pos].name);
- printf("\n");
-
/* Everything is fine. */
return XDS_OK;
|
|