From 500702b6b2adb8fb0bfd118250464cdeca33edcb Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 23 Dec 2008 05:28:57 +0100 Subject: Make local functions static --- tools/avinfo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/avinfo.c b/tools/avinfo.c index dccf4e7d..79a0eecc 100644 --- a/tools/avinfo.c +++ b/tools/avinfo.c @@ -480,7 +480,7 @@ static int avdtp_receive(int sk, void *data, int len) return ret; } -int avdtp_get_caps(int sk, int seid) +static int avdtp_get_caps(int sk, int seid) { struct seid_req req; char buffer[1024]; @@ -511,7 +511,7 @@ int avdtp_get_caps(int sk, int seid) return 0; } -int avdtp_discover(int sk) +static int avdtp_discover(int sk) { struct avdtp_header req; char buffer[256]; -- cgit