summaryrefslogtreecommitdiff
path: root/src/cairo-freelist-private.h
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2008-01-28 20:48:48 -0500
committerBehdad Esfahbod <behdad@behdad.org>2008-01-28 20:48:48 -0500
commit9ecde82d35ead4975ce110bb2012264e3ca9d2e1 (patch)
tree319367b5d3ea15e10f3e12090ccb1134d0cf53c8 /src/cairo-freelist-private.h
parent099c3c2602b59fbf9424044caa1fec7eb92f71df (diff)
downloadcairo-9ecde82d35ead4975ce110bb2012264e3ca9d2e1.tar.gz
[doc] Make sure all macro names in docs are prefixed by %
Diffstat (limited to 'src/cairo-freelist-private.h')
-rw-r--r--src/cairo-freelist-private.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cairo-freelist-private.h b/src/cairo-freelist-private.h
index 0d021270d..218c4c009 100644
--- a/src/cairo-freelist-private.h
+++ b/src/cairo-freelist-private.h
@@ -50,14 +50,14 @@ _cairo_freelist_fini (cairo_freelist_t *freelist);
/* Allocate a new node from the freelist. If the freelist contains no
* nodes, a new one will be allocated using malloc(). The caller is
* responsible for calling _cairo_freelist_free() or free() on the
- * returned node. Returns NULL on memory allocation error. */
+ * returned node. Returns %NULL on memory allocation error. */
cairo_private void *
_cairo_freelist_alloc (cairo_freelist_t *freelist);
/* Allocate a new node from the freelist. If the freelist contains no
* nodes, a new one will be allocated using calloc(). The caller is
* responsible for calling _cairo_freelist_free() or free() on the
- * returned node. Returns NULL on memory allocation error. */
+ * returned node. Returns %NULL on memory allocation error. */
cairo_private void *
_cairo_freelist_calloc (cairo_freelist_t *freelist);