From b7044a2dab73e7749f71dccbbf54f6402a49deb1 Mon Sep 17 00:00:00 2001 From: ehouse Date: Mon, 5 Nov 2007 03:42:27 +0000 Subject: [PATCH] Fix typo breaking compile. --- linux/linuxbt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/linuxbt.c b/linux/linuxbt.c index bc0a29f3b..1b2ce52b5 100644 --- a/linux/linuxbt.c +++ b/linux/linuxbt.c @@ -152,7 +152,7 @@ getL2Addr( const CommsAddrRec const* addrP, struct sockaddr_l2* const saddr ) sdp_list_t *r; // go through each of the service records - for ( r = response_list;; r; r = r->next ) { + for ( r = response_list; r; r = r->next ) { sdp_list_t *proto_list = NULL; sdp_record_t *rec = (sdp_record_t*) r->data;