diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-03-27 21:40:24 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-03-27 21:40:24 (GMT) |
commit | b9173f64d7b8ecc84dfc4728649adcfee24eb633 (patch) | |
tree | c7e44e27e5da78b8474bd99ef2200be02fb0684d /hl/tools/gif2h5/hdf2gif.c | |
parent | 9283f262f6bedc711a9149d711b34aaf352fc252 (diff) | |
download | hdf5-b9173f64d7b8ecc84dfc4728649adcfee24eb633.zip hdf5-b9173f64d7b8ecc84dfc4728649adcfee24eb633.tar.gz hdf5-b9173f64d7b8ecc84dfc4728649adcfee24eb633.tar.bz2 |
[svn-r13556]
Code cleaning regarding formatting and indentation
Tested linux
Diffstat (limited to 'hl/tools/gif2h5/hdf2gif.c')
-rw-r--r-- | hl/tools/gif2h5/hdf2gif.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hl/tools/gif2h5/hdf2gif.c b/hl/tools/gif2h5/hdf2gif.c index 49e65a2..9a15c91 100644 --- a/hl/tools/gif2h5/hdf2gif.c +++ b/hl/tools/gif2h5/hdf2gif.c @@ -89,13 +89,13 @@ int main(int argc , char **argv) int LeftOfs, TopOfs; int CountDown; int curx , cury; - int w,h; + int w,h; #endif /* UNUSED */ int ColorMapSize, InitCodeSize, Background, BitsPerPixel; int j,nc; - int i; + int i; int numcols = 256; - int time_out = 0; /* time between two images in the animation */ + int time_out = 0; /* time between two images in the animation */ int n_images , idx; BYTE pc2nc[256] , r1[256] , g1[256] , b1[256]; @@ -216,8 +216,8 @@ int main(int argc , char **argv) return -1; } - assert(dim_sizes[0]==(hsize_t)((int)dim_sizes[0])); - assert(dim_sizes[1]==(hsize_t)((int)dim_sizes[1])); + assert(dim_sizes[0]==(hsize_t)((int)dim_sizes[0])); + assert(dim_sizes[1]==(hsize_t)((int)dim_sizes[1])); RWidth = (int)dim_sizes[1]; RHeight = (int)dim_sizes[0]; #ifdef UNUSED |