summaryrefslogtreecommitdiffstats
path: root/src/H5detect.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2018-02-05 18:38:20 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2018-02-05 18:38:20 (GMT)
commitf325002db905f7da14e66a3bb30ac508d0cfb7fa (patch)
treee5bab0dc30cdeee8d4e4e0c5c899bd4c32e1ca71 /src/H5detect.c
parentffa2dec25d69ba2d530c5eb60e07d6618562017a (diff)
downloadhdf5-f325002db905f7da14e66a3bb30ac508d0cfb7fa.zip
hdf5-f325002db905f7da14e66a3bb30ac508d0cfb7fa.tar.gz
hdf5-f325002db905f7da14e66a3bb30ac508d0cfb7fa.tar.bz2
HDFFV-10345 spelling errors
Diffstat (limited to 'src/H5detect.c')
-rw-r--r--src/H5detect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5detect.c b/src/H5detect.c
index 2cc8366..ff163cf 100644
--- a/src/H5detect.c
+++ b/src/H5detect.c
@@ -37,7 +37,7 @@ static const char *FileHeader = "\n\
*
* Detects machine byte order and floating point
* format and generates a C source file (H5Tinit.c)
- * to describe those paramters.
+ * to describe those parameters.
*
* Assumptions: We have an ANSI compiler. We're on a Unix like
* system or configure has detected those Unix
@@ -75,7 +75,7 @@ static const char *FileHeader = "\n\
/* Define H5SETJMP/H5LONGJMP depending on if sigsetjmp/siglongjmp are */
/* supported. */
#if defined(H5_HAVE_SIGSETJMP) && defined(H5_HAVE_SIGLONGJMP)
-/* Always save blocked signals to be restore by siglongjmp. */
+/* Always save blocked signals to be restored by siglongjmp. */
#define H5JMP_BUF sigjmp_buf
#define H5SETJMP(buf) HDsigsetjmp(buf, 1)
#define H5LONGJMP(buf, val) HDsiglongjmp(buf, val)