aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_buffer_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_buffer_lib.h')
-rw-r--r--src/include/gnunet_buffer_lib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/gnunet_buffer_lib.h b/src/include/gnunet_buffer_lib.h
index 046aee72b..0c566df75 100644
--- a/src/include/gnunet_buffer_lib.h
+++ b/src/include/gnunet_buffer_lib.h
@@ -116,12 +116,12 @@ GNUNET_buffer_write_str (struct GNUNET_Buffer *buf, const char *str);
116 * 116 *
117 * @param buf buffer to write to 117 * @param buf buffer to write to
118 * @param data data to read from 118 * @param data data to read from
119 * @param len number of bytes to copy from @a data to @a buf 119 * @param data_len number of bytes to copy from @a data to @a buf
120 */ 120 */
121void 121void
122GNUNET_buffer_write_data_encoded (struct GNUNET_Buffer *buf, 122GNUNET_buffer_write_data_encoded (struct GNUNET_Buffer *buf,
123 const char *data, 123 const void *data,
124 size_t len); 124 size_t data_len);
125 125
126 126
127/** 127/**