From: Greg Kroah-Hartman Date: Fri, 18 Feb 2011 23:30:44 +0000 (-0800) Subject: bti.c: fix another compiler warning about global functions. X-Git-Url: https://git.toastfreeware.priv.at/gregoa/bti.git/commitdiff_plain/e14fa66ad8e52500503395e75fd07d07ce2a3ddd?hp=023dc2eb8681190ff4ce106aa90dd3204643f4cd bti.c: fix another compiler warning about global functions. Signed-off-by: Greg Kroah-Hartman --- 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);