diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-05-09 21:52:05 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-05-09 21:52:05 (GMT) |
commit | 4f36f613a6de09d8ec197b7e5a4a72dbdb9417a2 (patch) | |
tree | 558ce0f9ab8a98cfd1c9f6da52dd5f5dc6c3e150 /hl/tools | |
parent | e062a77e0e9e22f5d7c3ede4236e8992fd7daf8d (diff) | |
download | hdf5-4f36f613a6de09d8ec197b7e5a4a72dbdb9417a2.zip hdf5-4f36f613a6de09d8ec197b7e5a4a72dbdb9417a2.tar.gz hdf5-4f36f613a6de09d8ec197b7e5a4a72dbdb9417a2.tar.bz2 |
HDFFV-10186 Whitespace change
Mostly tabs to spaces
Remove Modifications comments
Diffstat (limited to 'hl/tools')
-rw-r--r-- | hl/tools/gif2h5/gif2mem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hl/tools/gif2h5/gif2mem.c b/hl/tools/gif2h5/gif2mem.c index 40b5583..55aae86 100644 --- a/hl/tools/gif2h5/gif2mem.c +++ b/hl/tools/gif2h5/gif2mem.c @@ -218,7 +218,7 @@ Gif2Mem(BYTE *MemGif, GIFTOMEM *GifMemoryStruct) PlainTextCount++; if (PlainTextCount > PlainTextArray) - PlainTextArray = (BYTE)((PlainTextArray << 1) + 1); + PlainTextArray = (BYTE)((PlainTextArray << 1) + 1); if (!(gifPlainText = (GIFPLAINTEXT **)realloc(gifPlainText , sizeof(GIFPLAINTEXT *) * PlainTextArray))) { printf("Out of memory!"); @@ -240,7 +240,7 @@ Gif2Mem(BYTE *MemGif, GIFTOMEM *GifMemoryStruct) CommentCount++; if (CommentCount > CommentArray) - CommentArray = (BYTE)((CommentArray << 1) + 1); + CommentArray = (BYTE)((CommentArray << 1) + 1); if (!(gifComment = (GIFCOMMENT **)realloc(gifComment , sizeof(GIFCOMMENT *) * CommentArray))) { printf("Out of memory!"); @@ -305,7 +305,7 @@ Gif2Mem(BYTE *MemGif, GIFTOMEM *GifMemoryStruct) ApplicationCount++; if (ApplicationCount > ApplicationArray) - ApplicationArray = (BYTE)((ApplicationArray << 1) + 1); + ApplicationArray = (BYTE)((ApplicationArray << 1) + 1); if (!(gifApplication = (GIFAPPLICATION **)realloc(gifApplication , sizeof(GIFAPPLICATION *) * ApplicationArray))) { printf("Out of memory!"); |