From e14fa66ad8e52500503395e75fd07d07ce2a3ddd Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Fri, 18 Feb 2011 15:30:44 -0800 Subject: [PATCH 1/1] bti.c: fix another compiler warning about global functions. Signed-off-by: Greg Kroah-Hartman --- bti.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bti.c b/bti.c index f6479f8..18b8116 100644 --- a/bti.c +++ b/bti.c @@ -284,8 +284,8 @@ static CURL *curl_init(void) } /* The final place data is sent to the screen/pty/tty */ -void bti_output_line(struct session *session, xmlChar *user, xmlChar *id, - xmlChar *created, xmlChar *text) +static void bti_output_line(struct session *session, xmlChar *user, + xmlChar *id, xmlChar *created, xmlChar *text) { if (session->verbose) printf("[%s] {%s} (%.16s) %s\n", user, id, created, text); -- 2.39.5