From: Mike Stump Date: Wed, 1 Sep 1993 22:06:56 +0000 (+0000) Subject: collect2.c (is_ctor_dtor): Make sizeof argument match the string. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5555d6d103826d686f2f4658f028009db877bdd2;p=gcc.git collect2.c (is_ctor_dtor): Make sizeof argument match the string. * collect2.c (is_ctor_dtor): Make sizeof argument match the string. From-SVN: r5239 --- diff --git a/gcc/collect2.c b/gcc/collect2.c index b50ab77bf11..7ef3241bbd4 100644 --- a/gcc/collect2.c +++ b/gcc/collect2.c @@ -402,7 +402,7 @@ is_ctor_dtor (s) #endif #else { "GLOBAL_$I$", sizeof ("GLOBAL_$I$")-1, 1, 0 }, - { "GLOBAL_$D$", sizeof ("GLOBAL_$I$")-1, 2, 0 }, + { "GLOBAL_$D$", sizeof ("GLOBAL_$D$")-1, 2, 0 }, #endif #ifdef CFRONT_LOSSAGE /* Don't collect cfront initialization functions. cfront has its own linker procedure to collect them;