From 44bc9605d6d3af9162dc917c43b7a466a24a230b Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Mon, 17 Oct 2011 17:43:16 +0200 Subject: 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 --- src/recur.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/recur.c') diff --git a/src/recur.c b/src/recur.c index 87e4e36..7b3c9fe 100644 --- a/src/recur.c +++ b/src/recur.c @@ -481,13 +481,13 @@ recur_apoint_write (struct recur_apoint *o, FILE *f) lt->tm_mon + 1, lt->tm_mday, 1900 + lt->tm_year); } recur_write_exc (&o->exc, f); - (void)fprintf (f, "} "); + (void)fputs ("} ", f); if (o->note != NULL) (void)fprintf (f, ">%s ", o->note); if (o->state & APOINT_NOTIFY) - (void)fprintf (f, "!"); + (void)fputc ('!', f); else - (void)fprintf (f, "|"); + (void)fputc ('|', f); (void)fprintf (f, "%s\n", o->mesg); } @@ -524,7 +524,7 @@ recur_event_write (struct recur_event *o, FILE *f) end_mon, end_day, end_year); } recur_write_exc (&o->exc, f); - (void)fprintf (f, "} "); + (void)fputs ("} ", f); if (o->note != NULL) (void)fprintf (f, ">%s ", o->note); (void)fprintf (f, "%s\n", o->mesg); -- cgit v1.2.3-54-g00ecf