Fix (-W)documentation error found by Clang
authoralagoutte <alagoutte@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 2 Dec 2013 13:45:59 +0000 (13:45 +0000)
committeralagoutte <alagoutte@f5534014-38df-0310-8fa8-9805f1628bb7>
Mon, 2 Dec 2013 13:45:59 +0000 (13:45 +0000)
error: parameter '...' not found in the function declaration [-Werror,-Wdocumentation]

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@53719 f5534014-38df-0310-8fa8-9805f1628bb7

wsutil/tempfile.h

index f58419f581c823a32b5ccba1f04c5e7ee9395079..80435699e7713943dc0044c1c95d5e5926a9357c 100644 (file)
@@ -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);