aboutsummaryrefslogtreecommitdiff
path: root/gcc/dwarf2asm.c
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2001-08-29 03:16:12 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2001-08-29 03:16:12 +0000
commitc43f84d7ced26730f6ca327e9007846aaa715783 (patch)
tree028e5ed56a33955738d8fda85dcbb863153cf3aa /gcc/dwarf2asm.c
parentc0cbc013a23961427ae646e516f8df1121899b3f (diff)
downloadgcc-c43f84d7ced26730f6ca327e9007846aaa715783.zip
gcc-c43f84d7ced26730f6ca327e9007846aaa715783.tar.gz
gcc-c43f84d7ced26730f6ca327e9007846aaa715783.tar.bz2
* dwarf2asm.c (dw2_asm_output_nstring): Fix typo in previous change.
From-SVN: r45254
Diffstat (limited to 'gcc/dwarf2asm.c')
-rw-r--r--gcc/dwarf2asm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarf2asm.c b/gcc/dwarf2asm.c
index 2f43a61..229ce00 100644
--- a/gcc/dwarf2asm.c
+++ b/gcc/dwarf2asm.c
@@ -281,7 +281,7 @@ dw2_asm_output_nstring VPARAMS ((const char *str, size_t orig_len,
VA_OPEN (ap, comment);
VA_FIXEDARG (ap, const char *, str);
- VA_FIXEDARG (ap, size_t, len);
+ VA_FIXEDARG (ap, size_t, orig_len);
VA_FIXEDARG (ap, const char *, comment);
len = orig_len;