diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-10-17 17:43:16 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-11-02 18:31:10 +0100 |
commit | 44bc9605d6d3af9162dc917c43b7a466a24a230b (patch) | |
tree | c0a4a48f4bbbc6daa4df25213590b09b2afeccc7 /src/mem.c | |
parent | 9aa9fde504fa3a05fcad04d6db086806ac8830c7 (diff) | |
download | calcurse-44bc9605d6d3af9162dc917c43b7a466a24a230b.zip |
Avoid use of printf()/fprintf()
Use one of the following functions where appropriate:
* puts() (whenever we print hard coded strings to stdout)
* fputs() (whenever we print hard coded strings to a stream)
* putchar() (whenever we print a single character to stdout)
* fputc() (whenever we print a single character to a stream)
* strncpy() (whenever we copy hard coded strings to a buffer)
This removes the overhead introduced by the format string parser and
reduces the number of false positive C-format strings spotted by
xgettext(1)'s heuristics.
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/mem.c')
-rw-r--r-- | src/mem.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -287,24 +287,24 @@ dump_block_info (struct mem_blk *blk) if (blk == NULL) return; - printf (_("---==== MEMORY BLOCK ====----------------\n")); + puts (_("---==== MEMORY BLOCK ====----------------\n")); printf (_(" id: %u\n"), blk->id); printf (_(" size: %u\n"), blk->size); printf (_(" allocated in: %s\n"), blk->pos); - printf (_("-----------------------------------------\n")); + puts (_("-----------------------------------------\n")); } void mem_stats (void) { - printf ("\n"); - printf (_("+------------------------------+\n")); - printf (_("| calcurse memory usage report |\n")); - printf (_("+------------------------------+\n")); + putchar ('\n'); + puts (_("+------------------------------+\n")); + puts (_("| calcurse memory usage report |\n")); + puts (_("+------------------------------+\n")); printf (_(" number of calls: %u\n"), mstats.ncall); printf (_(" allocated blocks: %u\n"), mstats.nalloc); printf (_(" unfreed blocks: %u\n"), mstats.nalloc - mstats.nfree); - printf ("\n"); + putchar ("\n"); if (mstats.nfree < mstats.nalloc) { |