Check-in Number:
|
4183 | |
Date: |
2001-Jul-09 19:22:34 (local)
2001-Jul-09 17:22:34 (UTC) |
User: | simons |
Branch: | |
Comment: |
Removed debug output. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/xds/set-capacity.c 1.1 -> 1.2
--- set-capacity.c 2001/07/08 15:20:34 1.1
+++ set-capacity.c 2001/07/09 17:22:34 1.2
@@ -25,8 +25,6 @@
SUCH DAMAGE.
*/
-#include <stdio.h> /* delete me */
-
#include <stdlib.h>
#include <assert.h>
#include "internal.h"
@@ -55,8 +53,6 @@
/* Allocate the array and store the new values. */
- printf("Reallocating array with capacity %d; old value was %d.\n", size, *array_capacity);
-
buf = realloc(*array, size * elem_size);
if (buf == NULL)
return XDS_ERR_NO_MEM;
|
|