summaryrefslogtreecommitdiff
path: root/gas/stabs.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2004-02-19 17:15:28 +0000
committerJakub Jelinek <jakub@redhat.com>2004-02-19 17:15:28 +0000
commitab027672e09a8650de8f02f0fafbd35f0332ddfe (patch)
treec162886922cc8e0175e2b9aa2df57424ac6d95c5 /gas/stabs.c
parent15433065ee14c0317f16df4c5a65f71e7c7272f8 (diff)
downloadbinutils-redhat-ab027672e09a8650de8f02f0fafbd35f0332ddfe.tar.gz
gas/
* stabs.c (generate_asm_file): Avoid warning about use of uninitialized variable. binutils/ * objcopy.c (copy_section): Avoid warnings.
Diffstat (limited to 'gas/stabs.c')
-rw-r--r--gas/stabs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/stabs.c b/gas/stabs.c
index 3d32729901..f8acdc8425 100644
--- a/gas/stabs.c
+++ b/gas/stabs.c
@@ -520,7 +520,7 @@ generate_asm_file (int type, char *file)
char *buf;
char *tmp = file;
char *endp = file + strlen (file);
- char *bufp = buf;
+ char *bufp;
if (last_file != NULL
&& strcmp (last_file, file) == 0)