Twas brillig at 23:22:09 12.10.2010 UTC+04 when dotted...@dottedmag.net did 
gyre and gimble:

 MG> /* Depth-first search and mark all CRTCs reachable from cur */
 MG> static void
 MG> dfs (rrScrPrivPtr pScrPriv, int *reachable, int cur)
 MG> {
 MG>     int i;
 MG>     reachable[cur] = TRUE;
 MG>     for (i = 0; i < pScrPriv->numCrtcs; ++i) {
 MG>         if (reachable[i])
 MG>             continue;

Should read as

if (reachable[i] || !pScrPriv->crtcs[i]->mode)
    continue;

-- 
  http://fossarchy.blogspot.com/

Attachment: pgpRffKXjfmPw.pgp
Description: PGP signature

_______________________________________________
xorg-devel@lists.x.org: X.Org development
Archives: http://lists.x.org/archives/xorg-devel
Info: http://lists.x.org/mailman/listinfo/xorg-devel

Reply via email to