noisy debug

This commit is contained in:
Chris Young 2012-11-06 20:43:00 +00:00
parent e05da2bbc0
commit 1e4b78af56

View File

@ -299,11 +299,15 @@ ULONG ami_font_scan_list(struct MinList *list)
af = (struct AvailFonts *)&(afh[1]);
for(i = 0; i < afh->afh_NumEntries; i++) {
LOG(("AvailFonts entry %ld", i));
if(af[i].af_Attr.ta_Style == FS_NORMAL) {
if(af[i].af_Attr.ta_Name != NULL) {
LOG(("Checking font %s", af[i].af_Attr.ta_Name));
node = (struct nsObject *)FindIName((struct List *)list,
af[i].af_Attr.ta_Name);
LOG(("Node address %lx", node));
if(node == NULL) {
LOG(("Node address (2) %lx", node));
node = AddObject(list, AMINS_UNKNOWN);
if(node) {
node->dtz_Node.ln_Name = strdup(af[i].af_Attr.ta_Name);