removed C99 style comments

This commit is contained in:
Tim Rühsen 2015-01-21 12:21:32 +01:00
parent de1a34d673
commit d5254ac816
1 changed files with 2 additions and 2 deletions

View File

@ -245,10 +245,10 @@ static int _suffix_compare(const _psl_entry_t *s1, const _psl_entry_t *s2)
int n;
if ((n = s2->nlabels - s1->nlabels))
return n; // most labels first
return n; /* most labels first */
if ((n = s1->length - s2->length))
return n; // shorter rules first
return n; /* shorter rules first */
return strcmp(s1->label, s2->label ? s2->label : s2->label_buf);
}