Lose spurious *

svn path=/trunk/netsurf/; revision=3985
This commit is contained in:
John Mark Bell 2008-03-19 17:41:38 +00:00
parent 5c1be65e31
commit 488520f2b2
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ bool directory_convert(struct content *c, int width, int height) {
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
return false;
}
for (cnv = nice_path, tmp = path; *tmp != '\0'; *tmp++) {
for (cnv = nice_path, tmp = path; *tmp != '\0'; tmp++) {
if (*tmp == '<') {
*cnv++ = '&';
*cnv++ = 'l';