From 35b193241604409f9dbb1e0e5db5a67b31ad75ee Mon Sep 17 00:00:00 2001 From: Juan RP Date: Sun, 11 Mar 2012 17:18:33 +0100 Subject: [PATCH] Apply correctly fix to match_any_virtualpkg_in_rundeps(). --- lib/plist_match.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/plist_match.c b/lib/plist_match.c index 3c74641e..dd39ef60 100644 --- a/lib/plist_match.c +++ b/lib/plist_match.c @@ -74,9 +74,9 @@ xbps_match_any_virtualpkg_in_rundeps(prop_array_t rundeps, found = true; break; } - if (found) - break; } + if (found) + break; } return found; }