From 0fa07a9d775852c070113ccb1f27da3e14ae3cf5 Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Tue, 22 Feb 2005 12:57:27 +0000 Subject: * Makefile.am (syslex.o, sysinfo.o): Pass AM_CFLAGS to compiler. (syslex.o, sysinfo.o, dlltool.o, rescoff.o): Remove duplicate dependencies. Run "make dep-am". * nlmconv.c: Warning fixes. * readelf.c: Likewise. * srconv.c: Likewise. * sysdump.c: Likewise. * sysinfo.y: Likewise. * syslex.l: Likewise. Use yyleng instead of strlen, memcpy instead of strcpy. * Makefile.in: Regenerate. --- binutils/nlmconv.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'binutils/nlmconv.c') diff --git a/binutils/nlmconv.c b/binutils/nlmconv.c index 44593c1212..b7798eba28 100644 --- a/binutils/nlmconv.c +++ b/binutils/nlmconv.c @@ -193,7 +193,7 @@ main (int argc, char **argv) bfd *sharedbfd; size_t shared_offset = 0; size_t shared_size = 0; - Nlm_Internal_Fixed_Header sharedhdr; + static Nlm_Internal_Fixed_Header sharedhdr; int len; char *modname; char **matching; @@ -976,7 +976,7 @@ main (int argc, char **argv) for (l = modules; l != NULL; l = l->next) { *set = strlen (l->string); - strncpy (set + 1, l->string, *set); + strncpy ((char *) set + 1, l->string, *set); set += *set + 1; ++c; } -- cgit v1.2.1