summaryrefslogtreecommitdiff
path: root/src/IO
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-01 15:25:51 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-07-01 15:25:51 +0000
commit29070b6e6c569d6c76665d4d4e3079869ea6c167 (patch)
tree567e8e116a350119612d9ae4f8e0fe5cc8cacf54 /src/IO
parent30b0ae9bd16d289293c639900c84d735d4a79e68 (diff)
Fixing prototypes and data types
git-svn-id: http://svn.cactuscode.org/flesh/trunk@612 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/IO')
-rw-r--r--src/IO/IOMethods.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/IO/IOMethods.c b/src/IO/IOMethods.c
index 066a68f6..fcd1d938 100644
--- a/src/IO/IOMethods.c
+++ b/src/IO/IOMethods.c
@@ -7,6 +7,8 @@
@enddesc
@@*/
+/*#define DEBUG_IO*/
+
#include <stdio.h>
#include <stdlib.h>
@@ -409,6 +411,11 @@ int CactusDefaultOutputGH(cGH *GH)
method = (struct IOMethod *)CCTK_GetHandledData(IOMethods, handle);
if (method)
{
+
+#ifdef DEBUG_IO
+ printf("Calling IO method with handle %d \n",handle);
+#endif
+
method->OutputGH(GH);
}
else