libgnunetutil: fix doc and indentation for realloc
authorMarkus Teich <teichm@fs.tum.de>
Sun, 9 Oct 2016 11:38:55 +0000 (11:38 +0000)
committerMarkus Teich <teichm@fs.tum.de>
Sun, 9 Oct 2016 11:38:55 +0000 (11:38 +0000)
src/include/gnunet_common.h
src/util/common_allocation.c

index 2438b179c1dfc56bb9fd276f2e608e876f1b8b14..dfe8effcd527c429aaba09079b0d252a17220d99 100644 (file)
@@ -854,7 +854,8 @@ GNUNET_ntoh_double (double d);
 
 /**
  * @ingroup memory
- * Wrapper around realloc. Rellocates size bytes of memory.
+ * Wrapper around realloc. Reallocates size bytes of memory.
+ * The content of the intersection of the new and old size will be unchanged.
  *
  * @param ptr the pointer to reallocate
  * @param size the number of bytes to reallocate
index f0299a223bed23ce144ce8dd68dbe98e4f5f8b19..f5b68356911df21c98829d3eb799d7776fe02d47 100644 (file)
@@ -234,6 +234,7 @@ GNUNET_xmalloc_unchecked_ (size_t size,
 /**
  * Reallocate memory. Checks the return value, aborts if no more
  * memory is available.
+ * The content of the intersection of the new and old size will be unchanged.
  *
  * @param ptr the pointer to reallocate
  * @param n how many bytes of memory to allocate
@@ -243,9 +244,9 @@ GNUNET_xmalloc_unchecked_ (size_t size,
  */
 void *
 GNUNET_xrealloc_ (void *ptr,
-                 size_t n,
-                 const char *filename,
-                 int linenumber)
+                  size_t n,
+                  const char *filename,
+                  int linenumber)
 {
 #ifdef W32_MEM_LIMIT
   n += sizeof (size_t);