summaryrefslogtreecommitdiff
path: root/src/gd_tga.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gd_tga.c')
-rw-r--r--src/gd_tga.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gd_tga.c b/src/gd_tga.c
index 286febb..6b68447 100644
--- a/src/gd_tga.c
+++ b/src/gd_tga.c
@@ -237,7 +237,7 @@ int read_image_tga( gdIOCtx *ctx, oTga *tga )
if (tga->imagetype != TGA_TYPE_RGB && tga->imagetype != TGA_TYPE_RGB_RLE)
return -1;
- /*! \brief Allocate memmory for image block
+ /*! \brief Allocate memory for image block
* Allocate a chunk of memory for the image block to be passed into.
*/
tga->bitmap = (int *) gdMalloc(image_block_size * sizeof(int));