extend.texi (Function Attributes): Add missing comma in the example of the "alloc_siz...
authorZuxy Meng <zuxy.meng@gmail.com>
Sun, 23 Mar 2008 16:38:05 +0000 (16:38 +0000)
committerGerald Pfeifer <gerald@gcc.gnu.org>
Sun, 23 Mar 2008 16:38:05 +0000 (16:38 +0000)
* doc/extend.texi (Function Attributes): Add missing comma in the
example of the "alloc_size" attribute.

From-SVN: r133462

gcc/ChangeLog
gcc/doc/extend.texi

index 27dbcb230c1244da973b91d3d3c46e75287257d1..a2f1b3515a730396e0bce062ddaf36f4c916787a 100644 (file)
@@ -1,3 +1,8 @@
+2008-03-23  Zuxy Meng <zuxy.meng@gmail.com>
+
+       * doc/extend.texi (Function Attributes): Add missing comma in the
+       example of the "alloc_size" attribute.
+       
 2008-03-23  Uros Bizjak  <ubizjak@gmail.com>
 
        Revert:
index fd97c16d96fe6ffe6fda8bc373647c90b67e57f2..b28d9dfd35d105a21c7f1e01d29f6dbebfb36f15 100644 (file)
@@ -1881,7 +1881,7 @@ For instance,
 
 @smallexample
 void* my_calloc(size_t, size_t) __attribute__((alloc_size(1,2)))
-void my_realloc(void* size_t) __attribute__((alloc_size(2)))
+void my_realloc(void*, size_t) __attribute__((alloc_size(2)))
 @end smallexample
 
 declares that my_calloc will return memory of the size given by