aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-02 13:45:59 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-12-02 13:45:59 +0000
commit67c04188ce8995d85638a23b5a67aa15cd4a42cc (patch)
treed0c9093a09d8609269024841990128018a3d30f9 /wsutil
parentacccbc79c54b61aa5111ca965103db1fc190d4ca (diff)
Fix (-W)documentation error found by Clang
error: parameter '...' not found in the function declaration [-Werror,-Wdocumentation] svn path=/trunk/; revision=53719
Diffstat (limited to 'wsutil')
-rw-r--r--wsutil/tempfile.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/wsutil/tempfile.h b/wsutil/tempfile.h
index f58419f581..80435699e7 100644
--- a/wsutil/tempfile.h
+++ b/wsutil/tempfile.h
@@ -49,9 +49,9 @@ WS_DLL_PUBLIC char *get_tempfile_path(const char *filename);
* Create a tempfile with the given prefix (e.g. "wireshark"). The path
* is created using g_get_tmp_dir and mkstemp.
*
- * @param namebuf[in,out] If not NULL, receives the full path of the temp file.
+ * @param namebuf [in,out] If not NULL, receives the full path of the temp file.
* Must NOT be freed.
- * @param pfx[in] A prefix for the temporary file.
+ * @param pfx [in] A prefix for the temporary file.
* @return The file descriptor of the new tempfile, from mkstemp().
*/
WS_DLL_PUBLIC int create_tempfile(char **namebuf, const char *pfx);