aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 5df8e2d17cd..be00e818be7 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -4526,7 +4526,7 @@ alloc_buffer_text (b, nbytes)
4526#elif defined REL_ALLOC 4526#elif defined REL_ALLOC
4527 p = r_alloc ((POINTER_TYPE **) &b->text->beg, nbytes); 4527 p = r_alloc ((POINTER_TYPE **) &b->text->beg, nbytes);
4528#else 4528#else
4529 p = xmalloc (b->text->beg, nbytes); 4529 p = xmalloc (nbytes);
4530#endif 4530#endif
4531 4531
4532 if (p == NULL) 4532 if (p == NULL)