diff options
author | Jerome Soumagne <jsoumagne@hdfgroup.org> | 2015-05-06 23:22:48 (GMT) |
---|---|---|
committer | Jerome Soumagne <jsoumagne@hdfgroup.org> | 2015-05-06 23:22:48 (GMT) |
commit | 5c8ecdd14a37ad6b1165e53088e9f4a7da2755c0 (patch) | |
tree | 5c2999b4a455fe6a9c72f3fc5c6dc17d603fd91a | |
parent | 24ef4efe9a673b18369b1552f81534eb33d0c45a (diff) | |
download | hdf5-5c8ecdd14a37ad6b1165e53088e9f4a7da2755c0.zip hdf5-5c8ecdd14a37ad6b1165e53088e9f4a7da2755c0.tar.gz hdf5-5c8ecdd14a37ad6b1165e53088e9f4a7da2755c0.tar.bz2 |
[svn-r27029] Fix bad comment in H5detect, this was preventing PGCC from compiling correctly.
Tested on: bluewaters
-rw-r--r-- | src/H5detect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5detect.c b/src/H5detect.c index fc0570c..9947b48 100644 --- a/src/H5detect.c +++ b/src/H5detect.c @@ -73,7 +73,7 @@ static const char *FileHeader = "\n\ #define H5JMP_BUF sigjmp_buf #define H5SETJMP(buf) HDsigsetjmp(buf, 1) #define H5LONGJMP(buf, val) HDsiglongjmp(buf, val) -#define H5HAVE_SIGJMP # sigsetjmp/siglongjmp are supported. +#define H5HAVE_SIGJMP /* sigsetjmp/siglongjmp are supported. */ #elif defined(H5_HAVE_LONGJMP) #define H5JMP_BUF jmp_buf #define H5SETJMP(buf) HDsetjmp(buf) |