summaryrefslogtreecommitdiff
path: root/camlibs/lumix/lumix.c
diff options
context:
space:
mode:
Diffstat (limited to 'camlibs/lumix/lumix.c')
-rw-r--r--camlibs/lumix/lumix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camlibs/lumix/lumix.c b/camlibs/lumix/lumix.c
index 481e08c05..4e27745df 100644
--- a/camlibs/lumix/lumix.c
+++ b/camlibs/lumix/lumix.c
@@ -380,7 +380,7 @@ write_callback(char *contents, size_t size, size_t nmemb, void *userp)
LumixMemoryBuffer *lmb = userp;
oldsize = lmb->size;
- /* 1 additionaly byte for 0x00 */
+ /* 1 additionally byte for 0x00 */
lmb->data = realloc(lmb->data, lmb->size+realsize+1);
lmb->size += realsize;
lmb->data[lmb->size] = 0x00;