summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-02-05 21:50:03 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-02-05 21:50:03 (GMT)
commit3ad685f720ccfac505122fee4f39eecd8c3010c5 (patch)
treed4c4e200a371c5129f1bf26f5e5625ea6c95f8a4 /src
parent503ae69aa0674d8a28c151a3ba895bb550608fb1 (diff)
downloadhdf5-3ad685f720ccfac505122fee4f39eecd8c3010c5.zip
hdf5-3ad685f720ccfac505122fee4f39eecd8c3010c5.tar.gz
hdf5-3ad685f720ccfac505122fee4f39eecd8c3010c5.tar.bz2
[svn-r3364] Purpose:
Bug fix Description: Fix typo in variable name Platforms tested: Eyeballed...
Diffstat (limited to 'src')
-rw-r--r--src/H5FDsrb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDsrb.c b/src/H5FDsrb.c
index f137491..09354a5 100644
--- a/src/H5FDsrb.c
+++ b/src/H5FDsrb.c
@@ -390,7 +390,7 @@ H5FD_srb_query(const UNUSED H5FD_t *_f, unsigned long *flags /* out */)
/* Set the VFL feature flags that this driver supports */
if(flags) {
- *flgs = 0;
+ *flags = 0;
*flags|=H5FD_FEAT_DATA_SIEVE; /* OK to perform data sieving for faster raw data reads & writes */
}