In perl.git, the branch blead has been updated <https://perl5.git.perl.org/perl.git/commitdiff/6535c371bb406eb1b07caf8c80d090dbfc4a9228?hp=9fb6174d0878e31d3a34bc4d96336f405f349ff0>
- Log ----------------------------------------------------------------- commit 6535c371bb406eb1b07caf8c80d090dbfc4a9228 Author: Karl Williamson <[email protected]> Date: Tue Sep 3 09:46:28 2019 -0600 util.c: Missing semicolon with rarely used compile ops commit 21815b5023c0da9aa373ef423d8770ba03c72dec Author: Karl Williamson <[email protected]> Date: Tue Sep 3 09:34:47 2019 -0600 t/harness: Clarify error message wording ----------------------------------------------------------------------- Summary of changes: t/harness | 4 ++-- util.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/t/harness b/t/harness index b9857fa022..58a212fad1 100644 --- a/t/harness +++ b/t/harness @@ -195,8 +195,8 @@ if (@ARGV) { my @nonexistent_serials = grep { not exists $all_dirs{$_} } keys %serials; if (@nonexistent_serials) { - die "These directories to be run serially are incorrectly" - . " specified:\n" . join "\n", @nonexistent_serials; + die "These directories to be run serially don't exist." + . " Check your spelling:\n" . join "\n", @nonexistent_serials; } # Remove the serial testing directories from the list of all diff --git a/util.c b/util.c index 376cc8ab0f..76f6ef4160 100644 --- a/util.c +++ b/util.c @@ -3360,7 +3360,7 @@ Perl_get_context(void) dVAR; # ifdef OLD_PTHREADS_API pthread_addr_t t; - int error = pthread_getspecific(PL_thr_key, &t) + int error = pthread_getspecific(PL_thr_key, &t); if (error) Perl_croak_nocontext("panic: pthread_getspecific, error=%d", error); return (void*)t; -- Perl5 Master Repository
