aboutsummaryrefslogtreecommitdiffstats
path: root/epan/except.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/except.c')
-rw-r--r--epan/except.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/except.c b/epan/except.c
index 0efe53b45d..2e79f902c0 100644
--- a/epan/except.c
+++ b/epan/except.c
@@ -216,11 +216,11 @@ G_GNUC_NORETURN WS_MSVC_NORETURN static void do_throw(except_t *except)
static void unhandled_catcher(except_t *except)
{
if (except->except_message == NULL) {
- fprintf(stderr, "Unhandled exception (group=%ld, code=%ld)\n",
+ fprintf(stderr, "Unhandled exception (group=%lu, code=%lu)\n",
except->except_id.except_group,
except->except_id.except_code);
} else {
- fprintf(stderr, "Unhandled exception (\"%s\", group=%ld, code=%ld)\n",
+ fprintf(stderr, "Unhandled exception (\"%s\", group=%lu, code=%lu)\n",
except->except_message, except->except_id.except_group,
except->except_id.except_code);
}