aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/html.cc4
-rw-r--r--src/uicmd.cc4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/html.cc b/src/html.cc
index 9deb8969..18bb34a9 100644
--- a/src/html.cc
+++ b/src/html.cc
@@ -2784,8 +2784,8 @@ static void Html_tag_open_meta(DilloHtml *html, const char *tag, int tagsize)
" <tr><td bgcolor='#a0a0a0' colspan='2'>The author wanted you to go\n"
" <a href='%s'>here</a>%s</td></tr></table><br>\n";
- const char *equiv, *content, *new_content;
- char delay_str[64], *mr_url, *p;
+ const char *p, *equiv, *content, *new_content;
+ char delay_str[64], *mr_url;
int delay;
/* only valid inside HEAD */
diff --git a/src/uicmd.cc b/src/uicmd.cc
index c6954652..362f0a9b 100644
--- a/src/uicmd.cc
+++ b/src/uicmd.cc
@@ -694,8 +694,8 @@ void a_UIcmd_redirection0(void *vbw, const DilloUrl *url)
static char *UIcmd_make_save_filename(const char *pathstr)
{
size_t MaxLen = 64;
- char *FileName, *name, *newname, *o, *n;
- const char *dir = a_UIcmd_get_save_dir();
+ char *FileName, *newname, *o, *n;
+ const char *name, *dir = a_UIcmd_get_save_dir();
if ((name = strrchr(pathstr, '/'))) {
if (strlen(++name) > MaxLen) {