From 5555d6d103826d686f2f4658f028009db877bdd2 Mon Sep 17 00:00:00 2001 From: Mike Stump Date: Wed, 1 Sep 1993 22:06:56 +0000 Subject: [PATCH] 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 --- gcc/collect2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2