@SleedSurfer commented on this pull request.


> @@ -80,6 +87,33 @@ static int doShell(rpmSpec spec)
 }
 #endif
 
+static int printSourceFilenames(rpmSpec spec, rpmSourceFlags what)
+{
+    rpmSpecSrcIter iter = rpmSpecSrcIterInit(spec);
+
+    rpmSpecSrc src;
+    while ((src = rpmSpecSrcIterNext(iter)) != NULL) 
+    {
+        if (rpmSpecSrcFlags(src) & what){

Oh i know what happened, clang autoformatted the while loop bracket to sit in 
line with the statement itself (which is wrong) so I added the space there 
instead of the if.. well third time's the charm

-- 
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/4262#discussion_r3631198862
You are receiving this because you are subscribed to this thread.

Message ID: <rpm-software-management/rpm/pull/4262/review/[email protected]>
_______________________________________________
Rpm-maint mailing list
[email protected]
https://lists.rpm.org/mailman/listinfo/rpm-maint

Reply via email to