]> Cypherpunks repositories - gostls13.git/commitdiff
previous change was a nit too aggressive - regular comparison should apply when comparing
authorRob Pike <r@golang.org>
Wed, 25 Jun 2008 04:44:48 +0000 (21:44 -0700)
committerRob Pike <r@golang.org>
Wed, 25 Jun 2008 04:44:48 +0000 (21:44 -0700)
internal symbol names

SVN=124461

src/libmach_amd64/sym.c

index e89a2a6690eb9341a40c4d6a3be6c3d5898be0f7..e43111546eb2f30673099ca737d98cae4eb98c8f 100644 (file)
@@ -1189,7 +1189,7 @@ symcomp(const void *a, const void *b)
        i = (*(Sym**)a)->value - (*(Sym**)b)->value;
        if (i)
                return i;
-       return cdotstrcmp((*(Sym**)a)->name, (*(Sym**)b)->name);
+       return strcmp((*(Sym**)a)->name, (*(Sym**)b)->name);
 }
 
 /*