comparison objlink.c @ 500:49701129c5dd

Remove the redundant word 'bytes' from Empty sections in describe output.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 17 Nov 2012 15:32:42 +0200
parents c9b83226e21a
children d13d8770477a
comparison
equal deleted inserted replaced
499:c9b83226e21a 500:49701129c5dd
679 { 679 {
680 kz = siz / (1024 * 2); 680 kz = siz / (1024 * 2);
681 681
682 if (kz > 1) memPrintEmpty(f, kz); 682 if (kz > 1) memPrintEmpty(f, kz);
683 683
684 snprintf(desc, sizeof(desc), "EMPTY (%d bytes)", siz); 684 snprintf(desc, sizeof(desc), "EMPTY (%d)", siz);
685 fprintf(f, "$%.4x - $%.4x | %-40s |\n", prev->end + 1, curr->start - 1, desc); 685 fprintf(f, "$%.4x - $%.4x | %-40s |\n", prev->end + 1, curr->start - 1, desc);
686 686
687 if (kz > 1) memPrintEmpty(f, kz); 687 if (kz > 1) memPrintEmpty(f, kz);
688 memPrintLine(f); 688 memPrintLine(f);
689 } 689 }