summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2001-06-19 19:01:49 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2001-06-19 19:01:49 (GMT)
commit09676ded1f6e9480e5154c8dcdf6a0226755d28b (patch)
tree1a7038c0861f77d59f7764fa17c600c4f1d6a8c9 /src
parent0b008afcb4db1afa4e7eddfd9f83f50c309305eb (diff)
downloadhdf5-09676ded1f6e9480e5154c8dcdf6a0226755d28b.zip
hdf5-09676ded1f6e9480e5154c8dcdf6a0226755d28b.tar.gz
hdf5-09676ded1f6e9480e5154c8dcdf6a0226755d28b.tar.bz2
[svn-r4021] Purpose:
Remove my fix... Description: Quincey already put a fix up for the bug I fixed before I could put up my fix for the bug. So I'm retracting my fix.
Diffstat (limited to 'src')
-rw-r--r--src/H5.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/H5.c b/src/H5.c
index ea2793a..c1ae745 100644
--- a/src/H5.c
+++ b/src/H5.c
@@ -821,14 +821,6 @@ HDfprintf (FILE *stream, const char *fmt, ...)
HDstrcpy (modifier, PRINTF_LL_WIDTH);
}
break;
- case 'l':
- /* takes care of "long long (ll)" modifiers */
- if (*(s + 1) == 'l') {
- HDstrcpy(modifier, "ll");
- s++;
- break;
- }
- /* FALL THROUGH */
default:
/* Handle 'll' for long long types */
if(*s=='l' && *(s+1)=='l') {