aboutsummaryrefslogtreecommitdiffstats
path: root/src/help.c
diff options
context:
space:
mode:
authorLukas Fleischer <calcurse@cryptocrack.de>2011-10-17 17:43:16 +0200
committerLukas Fleischer <calcurse@cryptocrack.de>2011-11-02 18:31:10 +0100
commit44bc9605d6d3af9162dc917c43b7a466a24a230b (patch)
treec0a4a48f4bbbc6daa4df25213590b09b2afeccc7 /src/help.c
parent9aa9fde504fa3a05fcad04d6db086806ac8830c7 (diff)
downloadcalcurse-44bc9605d6d3af9162dc917c43b7a466a24a230b.tar.gz
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/help.c')
-rw-r--r--src/help.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/help.c b/src/help.c
index 88b23d6..5064723 100644
--- a/src/help.c
+++ b/src/help.c
@@ -168,7 +168,7 @@ help_wins_init (struct scrollwin *hwin, int x, int y, int h, int w)
hwin->pad.h = BUFSIZ;
hwin->pad.w = hwin->win.w - 2 * PADOFFSET + 1;
- (void)snprintf (hwin->label, BUFSIZ, _("Calcurse help"));
+ (void)strncpy (hwin->label, _("Calcurse help"), BUFSIZ);
wins_scrollwin_init (hwin);
wins_show (hwin->win.p, hwin->label);
}