aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-08-03 16:33:54 +0200
committerChristian Grothoff <christian@grothoff.org>2020-08-03 16:34:02 +0200
commita899a94dccabeae11ccef5565751a9ace2f6cd01 (patch)
treeae8df41fd302ecf9a68894e48e798a166505d8e1 /src/include
parentbb2d8ad5c542135e515252d20a235b166ae20d97 (diff)
downloadgnunet-a899a94dccabeae11ccef5565751a9ace2f6cd01.tar.gz
gnunet-a899a94dccabeae11ccef5565751a9ace2f6cd01.zip
fix type
Diffstat (limited to 'src/include')
-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/**