aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@eff87b29-5268-4891-90a3-a07138403961>2002-04-25 17:44:07 +0000
committertradke <tradke@eff87b29-5268-4891-90a3-a07138403961>2002-04-25 17:44:07 +0000
commitdaf83e66153e9b05077624efdd9f48a37f3b3980 (patch)
tree82587d592907004a1b16f36a6d9b240bc2f1c4cf
parent7163b5eb8615197e29c96ad6b85a2f2af86a4c54 (diff)
Fixed an int<->CCTK_INT problem which didn't compile on the T3E.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusIO/IOJpeg/trunk@66 eff87b29-5268-4891-90a3-a07138403961
-rw-r--r--src/ioJpegGH.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ioJpegGH.h b/src/ioJpegGH.h
index d9ee66f..917291e 100644
--- a/src/ioJpegGH.h
+++ b/src/ioJpegGH.h
@@ -45,10 +45,9 @@ int IOJpeg_OutputGH (const cGH *GH);
int IOJpeg_OutputVarAs (const cGH *GH, const char *fullname, const char *alias);
int IOJpeg_TimeFor (const cGH *GH, int vindex);
int IOJpeg_TriggerOutput (const cGH *GH, int vindex);
-int IOJpeg_Write (const cGH *GH, CCTK_INT vindex, const char *alias);
/* other function prototypes */
-int IOJpeg_Write (const cGH *GH, int vindex, const char *alias);
+int IOJpeg_Write (const cGH *GH, CCTK_INT vindex, const char *alias);
/* routines called from JPEG.c */
int WriteJPEGToFileRGB (int nx, int ny, void *data, int Quality, FILE* outfile);