tempfile(.h): fix -Wdocumentation

tempfile.h:33:11: warning: parameter 'sfx' is already documented [-Wdocumentation]

Change-Id: I026ea52c484fb75a69f15b02e6eee5ce599da0e7
Reviewed-on: https://code.wireshark.org/review/36541
Reviewed-by: Dario Lombardo <lomato@gmail.com>
Petri-Dish: Dario Lombardo <lomato@gmail.com>
Tested-by: Petri Dish Buildbot
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2020-03-23 08:00:56 +00:00 committed by Anders Broman
parent 52a782d653
commit a3195b5539
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ extern "C" {
* @param pfx [in] A prefix for the temporary file.
* @param sfx [in] A file extension for the temporary file. NULL can be passed
* if no file extension is needed
* @param sfx [out] Any error returned by g_file_open_tmp. May be NULL.
* @param err [out] Any error returned by g_file_open_tmp. May be NULL.
* @return The file descriptor of the new tempfile, from mkstemps().
*/
WS_DLL_PUBLIC int create_tempfile(gchar **namebuf, const char *pfx, const char *sfx, GError **err);