Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/bthset use correct offset for channel in SDP record
details: https://anonhg.NetBSD.org/src/rev/bd262c6a0c01
branches: trunk
changeset: 343954:bd262c6a0c01
user: plunky <plunky%NetBSD.org@localhost>
date: Sun Mar 06 21:12:07 2016 +0000
description:
use correct offset for channel in SDP record
diffstat:
usr.bin/bthset/bthset.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (29 lines):
diff -r dbfbfcd554ec -r bd262c6a0c01 usr.bin/bthset/bthset.c
--- a/usr.bin/bthset/bthset.c Sun Mar 06 21:03:01 2016 +0000
+++ b/usr.bin/bthset/bthset.c Sun Mar 06 21:12:07 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: bthset.c,v 1.8 2012/03/15 02:02:23 joerg Exp $ */
+/* $NetBSD: bthset.c,v 1.9 2016/03/06 21:12:07 plunky Exp $ */
/*-
* Copyright (c) 2006 Itronix Inc.
@@ -33,7 +33,7 @@
#include <sys/cdefs.h>
__COPYRIGHT("@(#) Copyright (c) 2006 Itronix, Inc. All rights reserved.");
-__RCSID("$NetBSD: bthset.c,v 1.8 2012/03/15 02:02:23 joerg Exp $");
+__RCSID("$NetBSD: bthset.c,v 1.9 2016/03/06 21:12:07 plunky Exp $");
#include <sys/types.h>
#include <sys/audioio.h>
@@ -140,8 +140,8 @@
0x77, 0x61, 0x79
};
-static sdp_data_t hset_record = { hset_data + 0, hset_data + 91 };
-static sdp_data_t hset_channel = { hset_data + 36, hset_data + 37 };
+static sdp_data_t hset_record = { hset_data + 0, hset_data + 89 };
+static sdp_data_t hset_channel = { hset_data + 34, hset_data + 36 };
int
main(int ac, char *av[])
Home |
Main Index |
Thread Index |
Old Index