summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-08-25 22:14:52 -0600
committerKarl Williamson <khw@cpan.org>2019-08-26 09:54:22 -0600
commitba2a280355a1e23b0bc7e7b92d4483daba7f86f8 (patch)
tree45c4d38bc4be3978289fbb14b8e9cd1e24fc2e35 /util.c
parent5c0563e751095d7a7aad52c9fc3e203cbeeb4871 (diff)
downloadperl-ba2a280355a1e23b0bc7e7b92d4483daba7f86f8.tar.gz
util.c: Correct spelling in rarely compiled code
On Z/OS, this does get compiled, and fails due to the missepllings.
Diffstat (limited to 'util.c')
-rw-r--r--util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.c b/util.c
index 359f3b6d85..dc2e1bd489 100644
--- a/util.c
+++ b/util.c
@@ -6425,8 +6425,8 @@ Perl_get_c_backtrace(pTHX_ int depth, int skip)
Safefree(raw_frames);
return bt;
#else
- PERL_UNUSED_ARGV(depth);
- PERL_UNUSED_ARGV(skip);
+ PERL_UNUSED_ARG(depth);
+ PERL_UNUSED_ARG(skip);
return NULL;
#endif
}