diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/.distdep | 46 | ||||
-rw-r--r-- | src/H5Distore.c | 2 | ||||
-rw-r--r-- | src/H5Fistore.c | 2 | ||||
-rw-r--r-- | src/H5Flow.c | 24 |
4 files changed, 37 insertions, 37 deletions
diff --git a/src/.distdep b/src/.distdep index a039d32..4dfd2fb 100644 --- a/src/.distdep +++ b/src/.distdep @@ -1149,6 +1149,29 @@ H5Tbit.o: \ H5Tpublic.h \ H5Gprivate.h \ H5Gpublic.h +H5Tconv.o: \ + H5Tconv.c \ + H5Iprivate.h \ + H5Ipublic.h \ + H5public.h \ + H5config.h \ + H5private.h \ + H5Eprivate.h \ + H5Epublic.h \ + H5MMprivate.h \ + H5MMpublic.h \ + H5Tpkg.h \ + H5HGprivate.h \ + H5HGpublic.h \ + H5Fprivate.h \ + H5Fpublic.h \ + H5Dpublic.h \ + H5Rprivate.h \ + H5Rpublic.h \ + H5Tprivate.h \ + H5Tpublic.h \ + H5Gprivate.h \ + H5Gpublic.h H5Tinit.o: \ H5Tinit.c \ H5private.h \ @@ -1228,26 +1251,3 @@ H5Z.o: \ H5Sprivate.h \ H5Spublic.h \ H5Zprivate.h -H5Tconv.o: \ - H5Tconv.c \ - H5Iprivate.h \ - H5Ipublic.h \ - H5public.h \ - H5config.h \ - H5private.h \ - H5Eprivate.h \ - H5Epublic.h \ - H5MMprivate.h \ - H5MMpublic.h \ - H5Tpkg.h \ - H5HGprivate.h \ - H5HGpublic.h \ - H5Fprivate.h \ - H5Fpublic.h \ - H5Dpublic.h \ - H5Rprivate.h \ - H5Rpublic.h \ - H5Tprivate.h \ - H5Tpublic.h \ - H5Gprivate.h \ - H5Gpublic.h diff --git a/src/H5Distore.c b/src/H5Distore.c index 4a6f7e5..bf75f17 100644 --- a/src/H5Distore.c +++ b/src/H5Distore.c @@ -1144,7 +1144,7 @@ H5F_istore_prune (H5F_t *f, size_t size) * * If RELAX is non-zero and the chunk isn't in the cache then * don't try to read it from the file, but just allocate an - * uninitialized buffer to hold the result. This is indented + * uninitialized buffer to hold the result. This is intended * for output functions that are about to overwrite the entire * chunk. * diff --git a/src/H5Fistore.c b/src/H5Fistore.c index 4a6f7e5..bf75f17 100644 --- a/src/H5Fistore.c +++ b/src/H5Fistore.c @@ -1144,7 +1144,7 @@ H5F_istore_prune (H5F_t *f, size_t size) * * If RELAX is non-zero and the chunk isn't in the cache then * don't try to read it from the file, but just allocate an - * uninitialized buffer to hold the result. This is indented + * uninitialized buffer to hold the result. This is intended * for output functions that are about to overwrite the entire * chunk. * diff --git a/src/H5Flow.c b/src/H5Flow.c index 274d77c..68492de 100644 --- a/src/H5Flow.c +++ b/src/H5Flow.c @@ -479,9 +479,9 @@ H5F_low_access(const H5F_low_class_t *type, const char *name, const H5F_access_t *access_parms, int mode, H5F_search_t *key/*out*/) { - htri_t ret_value; - struct stat sb; - int fid; + htri_t ret_value; + struct stat sb; + int fid; FUNC_ENTER(H5F_low_size, FAIL); assert(type); @@ -492,17 +492,17 @@ H5F_low_access(const H5F_low_class_t *type, const char *name, ret_value = (0 == HDaccess(name, mode) ? TRUE : FALSE); if (key) { #ifdef WIN32 - /* - this extra block is needed because windows sets the st_dev member of sb - to be 0 if it is a file which makes the comparison below wrong - */ - - fid=open(name,mode|_O_BINARY); - HDfstat(fid,&sb); - close(fid); + /* + * This extra block is needed because windows sets the st_dev + * member of sb to be 0 if it is a file which makes the comparison + * below wrong + */ + fid=open(name,mode|_O_BINARY); + HDfstat(fid,&sb); + close(fid); #else HDstat(name, &sb); -#endif +#endif key->dev = sb.st_dev; key->ino = sb.st_ino; } |