summaryrefslogtreecommitdiffstats
path: root/hl/tools/gif2h5/gif2mem.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2017-05-10 13:48:46 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2017-05-10 13:48:46 (GMT)
commit900a110c89585976f4c3738f56edb4314259fd6e (patch)
tree13cdbea48bcf1a7755f36ecac3af5d8c388715ea /hl/tools/gif2h5/gif2mem.c
parentdc0276a81c1b4bd9d6e57d56526bc5e6bf09109c (diff)
parent4f36f613a6de09d8ec197b7e5a4a72dbdb9417a2 (diff)
downloadhdf5-900a110c89585976f4c3738f56edb4314259fd6e.zip
hdf5-900a110c89585976f4c3738f56edb4314259fd6e.tar.gz
hdf5-900a110c89585976f4c3738f56edb4314259fd6e.tar.bz2
Merge pull request #497 in HDFFV/hdf5 from ~BYRN/hdf5_adb:develop to develop
* commit '4f36f613a6de09d8ec197b7e5a4a72dbdb9417a2': HDFFV-10186 Whitespace change Mostly tabs to spaces Remove Modifications comments
Diffstat (limited to 'hl/tools/gif2h5/gif2mem.c')
-rw-r--r--hl/tools/gif2h5/gif2mem.c6
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!");