You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
os-autoinst/632.patch

23 lines
795 B

From a392e12038e5f1603177bbe1f61cf2335c58f211 Mon Sep 17 00:00:00 2001
From: Oliver Kurz <okurz@suse.de>
Date: Tue, 25 Oct 2016 09:33:12 +0200
Subject: [PATCH] baseclass: Fix missing qualifier in warn
---
backend/baseclass.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/backend/baseclass.pm b/backend/baseclass.pm
index b9f3f07..26f02af 100644
--- a/backend/baseclass.pm
+++ b/backend/baseclass.pm
@@ -725,7 +725,7 @@ sub set_tags_to_assert {
next;
}
unless (ref($n) eq 'needle' && $n->{name}) {
- warn "invalid needle passed <" . ref($n) . "> " . pp($n);
+ warn "invalid needle passed <" . ref($n) . "> " . bmwqemu::pp($n);
next;
}
push @$needles, $n;