]> git.ipfire.org Git - thirdparty/json-c.git/commitdiff
* Correct comment describing printbuf_memappend in printbuf.h
authorBrent Miller <bdmiller@yahoo-inc.com>
Thu, 20 Aug 2009 06:41:32 +0000 (06:41 +0000)
committerBrent Miller <bdmiller@yahoo-inc.com>
Thu, 20 Aug 2009 06:41:32 +0000 (06:41 +0000)
git-svn-id: http://svn.metaparadigm.com/svn/json-c/trunk@52 327403b1-1117-474d-bef2-5cb71233fd97

ChangeLog
printbuf.h

index dddd9959dc49c2809b1aadec60ce3847bbba2bb6..1a90e1053e63d9df7f5891a317d3d76c9b5be2b8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+  * Correction to comment describing printbuf_memappend in printbuf.h
+    Brent Miller, bdmiller at yahoo dash inc dot com
+
 0.9
   * Add README.html README-WIN32.html config.h.win32 to Makefile.am
     Michael Clark, <michael@metaparadigm.com>
index 53fa9216acf975a33098bb95683e4b4334284ba4..5d4963f0de1b51e196fd69799cc82ae908f56b83 100644 (file)
@@ -31,10 +31,12 @@ struct printbuf {
 extern struct printbuf*
 printbuf_new(void);
 
-/* As an optimization, printbuf_memappend is defined as a macro that
- * handles copying data if the buffer is large enough; otherwise it
- * invokes printbuf_memappend_real() which performs the heavy lifting
- * of realloc()ing the buffer and copying data.
+/* As an optimization, printbuf_memappend_fast is defined as a macro
+ * that handles copying data if the buffer is large enough; otherwise
+ * it invokes printbuf_memappend_real() which performs the heavy
+ * lifting of realloc()ing the buffer and copying data.
+ * Your code should not use printbuf_memappend directly--use
+ * printbuf_memappend_fast instead.
  */
 extern int
 printbuf_memappend(struct printbuf *p, const char *buf, int size);