Fix style

This commit is contained in:
Denis Kenzior 2009-08-06 17:33:44 -05:00
parent 6989732e3a
commit 572a89cce2
1 changed files with 2 additions and 2 deletions

View File

@ -173,9 +173,9 @@ static gint spdi_operator_compare(gconstpointer a, gconstpointer b)
{
const struct spdi_operator *opa = a;
const struct spdi_operator *opb = b;
gint r;
gint r = strcmp(opa->mcc, opb->mcc);
if ((r = strcmp(opa->mcc, opb->mcc)))
if (r)
return r;
return strcmp(opa->mnc, opb->mnc);