diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-05-16 11:11:25 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-05-16 11:11:25 +0000 |
commit | db49509326609c860abeb4257c170504c09a76db (patch) | |
tree | 660bbb93dc5848f6c6a9d96978c3494d0e8d4afc /gcc/protoize.c | |
parent | 1338e1a6b48aa4a0723d4290ee0f757c67845a9f (diff) | |
download | gcc-db49509326609c860abeb4257c170504c09a76db.tar.gz |
(edit_fn_definition): Fix mispelled local `have_flotsam'.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9709 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/protoize.c')
-rw-r--r-- | gcc/protoize.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/protoize.c b/gcc/protoize.c index 70a4dc88690..44f0721b53e 100644 --- a/gcc/protoize.c +++ b/gcc/protoize.c @@ -3861,7 +3861,7 @@ edit_fn_definition (def_dec_p, clean_text_p) const char *start_body_orig; const char *scan; const char *scan_orig; - int have_flotsum = 0; + int have_flotsam = 0; int have_newlines = 0; for (start_body = end_formals + 1; *start_body != '{';) @@ -3881,9 +3881,9 @@ edit_fn_definition (def_dec_p, clean_text_p) *((NONCONST char *)scan_orig) = ' '; /* identical - so whiteout */ } else - have_flotsum = 1; + have_flotsam = 1; } - if (have_flotsum) + if (have_flotsam) output_bytes (end_formals_orig + 1, (size_t) (start_body_orig - end_formals_orig) - 1); else |