aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/report_err.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2016-03-26 19:05:20 -0700
committerGuy Harris <guy@alum.mit.edu>2016-03-27 02:06:28 +0000
commitf0ada20a91b2f8aeb785dfd121060af0442dd307 (patch)
tree39d7e386b3c00d1e2b4372811c7c53d956a3fb05 /wsutil/report_err.h
parent445a57bdc35f5f09ef878b6bf5a46d7018ddddcc (diff)
Make failure_alert_box() be printf-like.
Have it be printf-like, and have vfailure_alert_box() be vprintf-like. Rename a few variables to make it clearer what pointers point to vprintf-like functions. Change-Id: I960e2138a18edcc742c450d68a0c6f7248f50c3f Reviewed-on: https://code.wireshark.org/review/14646 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wsutil/report_err.h')
-rw-r--r--wsutil/report_err.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/wsutil/report_err.h b/wsutil/report_err.h
index ef781ca3ba..fcef2e2e4b 100644
--- a/wsutil/report_err.h
+++ b/wsutil/report_err.h
@@ -41,7 +41,7 @@ extern "C" {
* Initialize the report err routines
*/
WS_DLL_PUBLIC void init_report_err(
- void (*report_failure)(const char *, va_list),
+ void (*vreport_failure)(const char *, va_list),
void (*report_open_failure)(const char *, int, gboolean),
void (*report_read_failure)(const char *, int),
void (*report_write_failure)(const char *, int));