diff options
author | Paul Harten <pharten@ncsa.uiuc.edu> | 1998-11-21 19:51:49 (GMT) |
---|---|---|
committer | Paul Harten <pharten@ncsa.uiuc.edu> | 1998-11-21 19:51:49 (GMT) |
commit | b13a36efd7cce0feb24a2384a3cda18e886746a2 (patch) | |
tree | 439627149b58930ab3411500a5843ccbe95095de /src | |
parent | 05e4309137e0346ab11de673c14fe68e6172f823 (diff) | |
download | hdf5-b13a36efd7cce0feb24a2384a3cda18e886746a2.zip hdf5-b13a36efd7cce0feb24a2384a3cda18e886746a2.tar.gz hdf5-b13a36efd7cce0feb24a2384a3cda18e886746a2.tar.bz2 |
[svn-r938] Purpose:
Bug fix
Problem:
semicolon missing
Solution:
added semicolon to end of statement
Platform tested:
Digital Unix
Diffstat (limited to 'src')
-rw-r--r-- | src/H5private.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5private.h b/src/H5private.h index 1e55eb3..abd104a 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -243,11 +243,11 @@ #if SIZEOF_INT16_T>=2 #elif SIZEOF_SHORT==2 - typedef short int16_t + typedef short int16_t; # undef SIZEOF_INT16_T # define SIZEOF_INT16_T SIZEOF_SHORT #elif SIZEOF_INT>=2 - typedef int int16_t + typedef int int16_t; # undef SIZEOF_INT16_T # define SIZEOF_INT16_T SIZEOF_INT #else |