[cairo] Another sweep_gradient fix

k was -1 sometimes.

Fixes the rest of https://roettsch.es/var_colrv1.html
diff --git a/src/hb-cairo-utils.cc b/src/hb-cairo-utils.cc
index 3466cba..299fdbe 100644
--- a/src/hb-cairo-utils.cc
+++ b/src/hb-cairo-utils.cc
@@ -727,7 +727,7 @@
     //assert (angles[0] + k * span <= 0 && 0 < angles[n_stops - 1] + k * span);
     span = fabs (span);
 
-    for (unsigned l = k; l < 1000; l++)
+    for (signed l = k; l < 1000; l++)
     {
       for (unsigned i = 1; i < n_stops; i++)
       {