summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/libtests')
-rw-r--r--testsuites/libtests/ChangeLog4
-rw-r--r--testsuites/libtests/malloctest/init.c1
2 files changed, 4 insertions, 1 deletions
diff --git a/testsuites/libtests/ChangeLog b/testsuites/libtests/ChangeLog
index ea73e69259..6eeb0862a9 100644
--- a/testsuites/libtests/ChangeLog
+++ b/testsuites/libtests/ChangeLog
@@ -1,3 +1,7 @@
+2008-01-22 Joel Sherrill <joel.sherrill@OARcorp.com>
+
+ * malloctest/init.c: Remove debug print.
+
2008-01-09 Joel Sherrill <joel.sherrill@OARcorp.com>
* monitor02/.cvsignore: New file.
diff --git a/testsuites/libtests/malloctest/init.c b/testsuites/libtests/malloctest/init.c
index 3115ed275e..36fea68113 100644
--- a/testsuites/libtests/malloctest/init.c
+++ b/testsuites/libtests/malloctest/init.c
@@ -77,7 +77,6 @@ void test_realloc(void)
p2 = malloc(8);
free(p1);
sc = posix_memalign(&p1, 16, 32);
- printf( "sc = %d\n", sc );
if (!sc)
free(p1);