aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-12-19 19:30:31 +0100
committerChristian Grothoff <christian@grothoff.org>2020-12-19 19:30:31 +0100
commit0876272a77b7fbcf8e662dccf463e5fca9ea9acf (patch)
treeeda4944485e58838c30b68d9d02e5f71ed0a0e70 /src/include
parent6b17d3fe559a659080ce59117fb704aae642e797 (diff)
downloadgnunet-0876272a77b7fbcf8e662dccf463e5fca9ea9acf.tar.gz
gnunet-0876272a77b7fbcf8e662dccf463e5fca9ea9acf.zip
minor fixes
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_disk_lib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_disk_lib.h b/src/include/gnunet_disk_lib.h
index b794088c4..e45ab84f4 100644
--- a/src/include/gnunet_disk_lib.h
+++ b/src/include/gnunet_disk_lib.h
@@ -614,8 +614,8 @@ GNUNET_DISK_file_write_blocking (const struct GNUNET_DISK_FileHandle *h,
614 * with @a buf_size bytes could be written to @a filename. 614 * with @a buf_size bytes could be written to @a filename.
615 * 615 *
616 * @param fn file name 616 * @param fn file name
617 * @param buffer the data to write 617 * @param buf the data to write
618 * @param n number of bytes to write 618 * @param buf_size number of bytes to write from @a buf
619 * @param mode file permissions 619 * @param mode file permissions
620 * @return #GNUNET_OK on success, 620 * @return #GNUNET_OK on success,
621 * #GNUNET_NO if a file existed under @a filename 621 * #GNUNET_NO if a file existed under @a filename
@@ -623,8 +623,8 @@ GNUNET_DISK_file_write_blocking (const struct GNUNET_DISK_FileHandle *h,
623 */ 623 */
624enum GNUNET_GenericReturnValue 624enum GNUNET_GenericReturnValue
625GNUNET_DISK_fn_write (const char *fn, 625GNUNET_DISK_fn_write (const char *fn,
626 const void *buffer, 626 const void *buf,
627 size_t n, 627 size_t buf_size,
628 enum GNUNET_DISK_AccessPermissions mode); 628 enum GNUNET_DISK_AccessPermissions mode);
629 629
630 630