mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 18:23:57 -06:00
Add some missing static qualifiers
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5363 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
98448f58c1
commit
674bb26172
4 changed files with 8 additions and 8 deletions
4
vl.c
4
vl.c
|
@ -5375,7 +5375,7 @@ static struct bt_vlan_s {
|
|||
} *first_bt_vlan;
|
||||
|
||||
/* find or alloc a new bluetooth "VLAN" */
|
||||
struct bt_scatternet_s *qemu_find_bt_vlan(int id)
|
||||
static struct bt_scatternet_s *qemu_find_bt_vlan(int id)
|
||||
{
|
||||
struct bt_vlan_s **pvlan, *vlan;
|
||||
for (vlan = first_bt_vlan; vlan != NULL; vlan = vlan->next) {
|
||||
|
@ -6360,7 +6360,7 @@ static int bdrv_fclose(void *opaque)
|
|||
return 0;
|
||||
}
|
||||
|
||||
QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int64_t offset, int is_writable)
|
||||
static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int64_t offset, int is_writable)
|
||||
{
|
||||
QEMUFileBdrv *s;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue