]> git.eshelyaron.com Git - emacs.git/commitdiff
(alloc_buffer_text): Fix xmalloc call.
authorDave Love <fx@gnu.org>
Thu, 14 Sep 2000 19:39:11 +0000 (19:39 +0000)
committerDave Love <fx@gnu.org>
Thu, 14 Sep 2000 19:39:11 +0000 (19:39 +0000)
src/buffer.c

index 5df8e2d17cdee3cd5b8e68b099070a07dfdc4ac3..be00e818be7cd7273165db646576f9ddb7436d4f 100644 (file)
@@ -4526,7 +4526,7 @@ alloc_buffer_text (b, nbytes)
 #elif defined REL_ALLOC
   p = r_alloc ((POINTER_TYPE **) &b->text->beg, nbytes);
 #else
-  p = xmalloc (b->text->beg, nbytes);
+  p = xmalloc (nbytes);
 #endif
   
   if (p == NULL)