summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-05-27 20:13:51 +0200
committerjcid <devnull@localhost>2008-05-27 20:13:51 +0200
commit27ec95d76e25b7bf073932b7489e7133d6c15938 (patch)
treee8f3c3297588de5e8f4c1042617c5e5a1e50e825
parent22ea183c31a5273af365c376e3427add26c6a905 (diff)
- local var rename.
-rw-r--r--src/html.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/html.cc b/src/html.cc
index 493407fc..81dae4b6 100644
--- a/src/html.cc
+++ b/src/html.cc
@@ -1055,9 +1055,9 @@ int DilloHtml::formNew(DilloHtmlMethod method, const DilloUrl *action,
{
DilloHtmlForm *form = new DilloHtmlForm (method,action,enc,charset);
form->form_receiver = new form::Form (this);
- int size = forms->size ();
+ int nf = forms->size ();
forms->increase ();
- forms->set (size, form);
+ forms->set (nf, form);
_MSG("Html formNew: action=%s nform=%d\n", action, nf);
return forms->size();
}