diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-09-28 19:12:43 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-09-28 19:12:43 (GMT) |
commit | b53bfca418eef5fa9ba3997a2f9310113434fe73 (patch) | |
tree | 02644a2f6d6588b38bbdc51e6932758395b3afb2 /src/H5FDlog.c | |
parent | a9afb07bd8c124d068e8f62b8edaf31b585c33d4 (diff) | |
download | hdf5-b53bfca418eef5fa9ba3997a2f9310113434fe73.zip hdf5-b53bfca418eef5fa9ba3997a2f9310113434fe73.tar.gz hdf5-b53bfca418eef5fa9ba3997a2f9310113434fe73.tar.bz2 |
[svn-r2611] Purpose:
Rearrange code
Description:
The data sieve buffering code for contiguously stored datasets was
wedged in the H5F_arr_read/H5F_arr_write routines.
Solution:
Created a new H5Fcontig.c to hold I/O routines for contiguously stored
datasets (like H5Fistore.c for chunked dataset I/O routines) and moved
data sieving code into those routines.
Platforms tested:
Solaris 2.6 (i.e. baldric)
Diffstat (limited to 'src/H5FDlog.c')
-rw-r--r-- | src/H5FDlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDlog.c b/src/H5FDlog.c index 9c81125..77464c9 100644 --- a/src/H5FDlog.c +++ b/src/H5FDlog.c @@ -40,7 +40,7 @@ static hid_t H5FD_LOG_g = 0; /* Driver-specific file access properties */ typedef struct H5FD_log_fapl_t { - char *logfile; /* Allocated log file name */ + const char *logfile; /* Allocated log file name */ intn verbosity; /* Verbosity of logging information */ } H5FD_log_fapl_t; |