From 5c1c3cdf1c95538703d8850b79e0001b16327843 Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Wed, 18 Jul 2007 21:57:58 +0000 Subject: [PATCH] remove debugging output This commit was SVN r15497. --- opal/util/net.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/opal/util/net.c b/opal/util/net.c index 1543d7c12b..2c5308ed9f 100644 --- a/opal/util/net.c +++ b/opal/util/net.c @@ -85,7 +85,6 @@ static opal_tsd_key_t hostname_tsd_key; static void hostname_cleanup(void *value) { - opal_output(0, "cleaning up buffer: 0x%lx", value); if (NULL != value) free(value); } @@ -100,13 +99,10 @@ get_hostname_buffer(void) if (OPAL_SUCCESS != ret) return NULL; if (NULL == buffer) { - opal_output(0, "getting a buffer"); buffer = (void*) malloc((NI_MAXHOST + 1) * sizeof(char)); ret = opal_tsd_setspecific(hostname_tsd_key, buffer); } - opal_output(0, "returning buffer: 0x%lx", buffer); - return (char*) buffer; } #endif