diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-02-05 21:50:03 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-02-05 21:50:03 (GMT) |
commit | 3ad685f720ccfac505122fee4f39eecd8c3010c5 (patch) | |
tree | d4c4e200a371c5129f1bf26f5e5625ea6c95f8a4 /src/H5FDsrb.c | |
parent | 503ae69aa0674d8a28c151a3ba895bb550608fb1 (diff) | |
download | hdf5-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/H5FDsrb.c')
-rw-r--r-- | src/H5FDsrb.c | 2 |
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 */ } |