about summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/alloc_buffer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/alloc_buffer.h b/include/alloc_buffer.h
index d668a60d66..21558a6c3b 100644
--- a/include/alloc_buffer.h
+++ b/include/alloc_buffer.h
@@ -267,7 +267,7 @@ __alloc_buffer_alloc (struct alloc_buffer *buf, size_t size, size_t align)
 
 /* Obtain a TYPE * pointer to an object in BUF of TYPE.  Consume these
    bytes from the buffer.  Return NULL and mark the buffer as failed
-   if if there is not enough room in the buffer, or if the buffer has
+   if there is not enough room in the buffer, or if the buffer has
    failed before.  */
 #define alloc_buffer_alloc(buf, type)				\
   ((type *) __alloc_buffer_alloc				\
@@ -315,7 +315,7 @@ void * __libc_alloc_buffer_alloc_array (struct alloc_buffer *buf,
 
 /* Obtain a TYPE * pointer to an array of COUNT objects in BUF of
    TYPE.  Consume these bytes from the buffer.  Return NULL and mark
-   the buffer as failed if if there is not enough room in the buffer,
+   the buffer as failed if there is not enough room in the buffer,
    or if the buffer has failed before.  (Zero-length allocations from
    an empty buffer which has not yet failed succeed.)  */
 #define alloc_buffer_alloc_array(buf, type, count)       \