]> gcc.gnu.org Git - gcc.git/commitdiff
collect2.c (is_ctor_dtor): Make sizeof argument match the string.
authorMike Stump <mrs@gcc.gnu.org>
Wed, 1 Sep 1993 22:06:56 +0000 (22:06 +0000)
committerMike Stump <mrs@gcc.gnu.org>
Wed, 1 Sep 1993 22:06:56 +0000 (22:06 +0000)
        * collect2.c (is_ctor_dtor): Make sizeof argument match the
        string.

From-SVN: r5239

gcc/collect2.c

index b50ab77bf1112a8e000097329e3800fffda5a21f..7ef3241bbd4eeafca1f0d5a1ea4a728e42844486 100644 (file)
@@ -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;
This page took 0.074916 seconds and 5 git commands to generate.