* xcoffexec.c (vmap_ldinfo): Fix "/" for '/' typo, reported
authorJohn Gilmore <gnu@cygnus>
Sat, 27 Feb 1993 02:35:04 +0000 (02:35 +0000)
committerJohn Gilmore <gnu@cygnus>
Sat, 27 Feb 1993 02:35:04 +0000 (02:35 +0000)
by Josef Leherbauer, joe@takeFive.co.at.

gdb/ChangeLog
gdb/xcoffexec.c

index 7977a6dce216d8dfe2c508be42cd8b407d4c1f8b..758bbf442f0e740d70a815b57b92ce7382c2fb7d 100644 (file)
@@ -1,3 +1,19 @@
+Fri Feb 26 18:33:18 1993  John Gilmore  (gnu@cacophony.cygnus.com)
+
+       * xcoffexec.c (vmap_ldinfo):  Fix "/" for '/' typo, reported
+       by Josef Leherbauer, joe@takeFive.co.at.
+
+Wed Feb 24 19:17:11 1993  John Gilmore  (gnu@cacophony.cygnus.com)
+
+       * symfile.c (syms_from_objfile), tm-29k.h, tm-3b1.h, tm-68k-un.h,
+       tm-altos.h, tm-arm.h, tm-convex.h, tm-es1800.h, tm-h8300.h,
+       tm-hp300bsd.h, tm-hp300hpux.h, tm-hppa.h, tm-i386bsd.h,
+       tm-i386v.h, tm-i960.h, tm-irix3.h, tm-isi.h, tm-linux.h,
+       tm-m88k.h, tm-merlin.h, tm-mips.h, tm-news.h, tm-np1.h, tm-pn.h,
+       tm-pyr.h, tm-rs6000.h, tm-spc-un.h, tm-sun386.h, tm-sunos.h,
+       tm-symmetry.h, tm-sysv4.h, tm-tahoe.h, tm-umax.h, tm-vax.h,
+       tm-vx68.h, tm-z8k.h:  Remove remnants of NAMES_HAVE_UNDERSCORE.
+
 Wed Feb 24 07:41:15 1993  Fred Fish  (fnf@cygnus.com)
 
        * symtab.h (SYMBOL_INIT_DEMANGLED_NAME):  Initialize contents
index 16232ac73effa3f8f868e8840ecc4cc71dcf2b11..ff13aea6cd048d82a11dfffb1cd0659ebd32784c 100644 (file)
@@ -706,7 +706,7 @@ retry:
 
          /* The filenames are not always sufficient to match on. */
 
-         if ((name[0] == "/" && !STREQ(name, vp->name))
+         if ((name[0] == '/' && !STREQ(name, vp->name))
                || (memb[0] && !STREQ(memb, vp->member)))
            continue;
 
This page took 0.027983 seconds and 4 git commands to generate.