summaryrefslogtreecommitdiffstats
path: root/pablo/PabloHDF.c
diff options
context:
space:
mode:
authorDan Wells <dwells@cs.uiuc.edu>2003-08-27 17:04:21 (GMT)
committerDan Wells <dwells@cs.uiuc.edu>2003-08-27 17:04:21 (GMT)
commit42d84aa44fe19a20271008a853c175c1cc26fc70 (patch)
tree78202b2557a47119bebd17e51cfa8afdc0c2cabf /pablo/PabloHDF.c
parentb1827b5b60b3f8780a41286dc013621e79e7026e (diff)
downloadhdf5-42d84aa44fe19a20271008a853c175c1cc26fc70.zip
hdf5-42d84aa44fe19a20271008a853c175c1cc26fc70.tar.gz
hdf5-42d84aa44fe19a20271008a853c175c1cc26fc70.tar.bz2
[svn-r7424]
Purpose: bug Description: pablo failed to build properly Solution: make needed header files on the fly once again. also allowed for length of hdf entry names to be 80 characters. Platforms tested: modi4, copper, arabica, verbena Misc. update:
Diffstat (limited to 'pablo/PabloHDF.c')
-rw-r--r--pablo/PabloHDF.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pablo/PabloHDF.c b/pablo/PabloHDF.c
index 537ed5a..f756381 100644
--- a/pablo/PabloHDF.c
+++ b/pablo/PabloHDF.c
@@ -138,7 +138,7 @@ extern void preInitIOTrace( void );
#define ID_timeStamp 9999
#define DUMMY_HDF 10000
-char HDFprocNames[][40] = {
+char HDFprocNames[][80] = {
"noName",
"noName",
"noName",
@@ -150,7 +150,7 @@ char HDFprocNames[][40] = {
void startHDFtraceEvent (int );
void endHDFtraceEvent (int , int , char *, int );
-void getHDFprocName( int, char[41] );
+void getHDFprocName( int, char[81] );
void setHDFcallLevel( int );
void resetHDFcallLevel( void );
@@ -169,7 +169,7 @@ void unixIObaseInit( int captureType, int procNum );
int hdfBaseInit( int captureType,
int procNum,
int numHDFentries,
- char HDFprocNames[][40] );
+ char HDFprocNames[][80] );
void timeStamp( void );
void hdfBaseEnd( void );
void unixIObaseEnd( void );
@@ -1219,7 +1219,7 @@ HDFtracePUTS( const char *s )
return( ret );
}
-void getHDFprocName ( int i, char buff[41] )
+void getHDFprocName ( int i, char buff[81] )
{
strcpy( buff, HDFprocNames[i] );
}