diff options
author | Francisco Alecrim <francisco.alecrim@openbossa.org> | 2010-04-08 17:35:01 -0400 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@nokia.com> | 2010-04-12 01:43:34 +0300 |
commit | 86190ea09cf8375ad8f08889f6ebb3629ab4beed (patch) | |
tree | c60c0e48bd60eba92aa14ff3f47f3d0220ddedb4 /src/sdpd-database.c | |
parent | 78c8da05216642cd7f668c19a03ce15cd021686c (diff) | |
download | bluez-86190ea09cf8375ad8f08889f6ebb3629ab4beed.tar.gz |
List with UUIDs per-adapter should be sorted
Diffstat (limited to 'src/sdpd-database.c')
-rw-r--r-- | src/sdpd-database.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sdpd-database.c b/src/sdpd-database.c index 224a4e74a..263b16ead 100644 --- a/src/sdpd-database.c +++ b/src/sdpd-database.c @@ -55,7 +55,7 @@ typedef struct { * The service repository is a linked list in sorted order * and the service record handle is the sort key */ -static int record_sort(const void *r1, const void *r2) +int record_sort(const void *r1, const void *r2) { const sdp_record_t *rec1 = (const sdp_record_t *) r1; const sdp_record_t *rec2 = (const sdp_record_t *) r2; |