summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2012-10-16 22:10:49 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2012-10-16 22:10:49 +0100
commitca555e7fd132306ab0931145fde1079879c3cd38 (patch)
tree35429cc7817b7163ba81c4b4ef4e1deea62ad470 /amiga
parente3261a38e2ca461caebcd4a67365c81ba39014d0 (diff)
downloadnetsurf-ca555e7fd132306ab0931145fde1079879c3cd38.tar.gz
netsurf-ca555e7fd132306ab0931145fde1079879c3cd38.tar.bz2
remove extraneous linefeeds
Diffstat (limited to 'amiga')
-rw-r--r--amiga/font_scan.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/amiga/font_scan.c b/amiga/font_scan.c
index 549ea5064..5091314e6 100644
--- a/amiga/font_scan.c
+++ b/amiga/font_scan.c
@@ -259,10 +259,10 @@ ULONG ami_font_scan_fonts(struct MinList *list,
do {
nnode = (struct nsObject *)GetSucc((struct Node *)node);
ami_font_scan_gui_update(win, node->dtz_Node.ln_Name, font_num, total);
- LOG(("Scanning %s\n", node->dtz_Node.ln_Name));
+ LOG(("Scanning %s", node->dtz_Node.ln_Name));
found = ami_font_scan_font(node->dtz_Node.ln_Name, glypharray);
total += found;
- LOG(("Found %ld new glyphs (total = %ld)\n", found, total));
+ LOG(("Found %ld new glyphs (total = %ld)", found, total));
font_num++;
} while(node = nnode);
@@ -308,7 +308,7 @@ ULONG ami_font_scan_list(struct MinList *list)
if(node) {
node->dtz_Node.ln_Name = strdup(af[i].af_Attr.ta_Name);
found++;
- LOG(("Added %s\n", af[i].af_Attr.ta_Name));
+ LOG(("Added %s", af[i].af_Attr.ta_Name));
}
}
}