Fix (-W)documentation error found by Clang

error: parameter '...' not found in the function declaration [-Werror,-Wdocumentation]

svn path=/trunk/; revision=53719
This commit is contained in:
Alexis La Goutte 2013-12-02 13:45:59 +00:00
parent acccbc79c5
commit 67c04188ce
1 changed files with 2 additions and 2 deletions

View 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);