1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-22 04:24:19 +00:00

miner.php correct sort gen field names largest to smallest

This commit is contained in:
Kano 2013-10-22 19:30:03 +11:00
parent d9449b2578
commit 9932c95569

View File

@ -2385,7 +2385,7 @@ function ss($a, $b)
$la = strlen($a);
$lb = strlen($b);
if ($la != $lb)
return $la - $lb;
return $lb - $la;
return strcmp($a, $b);
}
#