summaryrefslogtreecommitdiff
path: root/glib/src/fileutils.hg
diff options
context:
space:
mode:
Diffstat (limited to 'glib/src/fileutils.hg')
-rw-r--r--glib/src/fileutils.hg4
1 files changed, 2 insertions, 2 deletions
diff --git a/glib/src/fileutils.hg b/glib/src/fileutils.hg
index 3abb38b2..c6e73ede 100644
--- a/glib/src/fileutils.hg
+++ b/glib/src/fileutils.hg
@@ -355,8 +355,8 @@ int mkstemp(std::string& filename_template);
*
* The actual name used is returned in @a name_used.
*
+ * @param[out] name_used The actual name used.
* @param prefix Template for file name, basename only.
- * @retval name_used The actual name used.
* @return A file handle (as from <tt>open()</tt>) to the file opened for reading
* and writing. The file is opened in binary mode on platforms where there is a
* difference. The file handle should be closed with <tt>close()</tt>.
@@ -370,7 +370,7 @@ int file_open_tmp(std::string& name_used, const std::string& prefix);
* This function works like file_open_tmp(std::string&, const std::string&)
* but uses a default basename prefix.
*
- * @retval name_used The actual name used.
+ * @param[out] name_used The actual name used.
* @return A file handle (as from <tt>open()</tt>) to the file opened for reading
* and writing. The file is opened in binary mode on platforms where there is a
* difference. The file handle should be closed with <tt>close()</tt>.