Skip to content

Commit 681ff7d

Browse files
descenderhartwork
authored andcommitted
* lv_hashmap.c (_HashmapIterContext), lv_list.c ListIterContext): 'object' should have type VisObject, not VisObject *.
1 parent 8f5ffaf commit 681ff7d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

libvisual/libvisual/lv_hashmap.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Authors: Dennis Smit <[email protected]>
66
*
7-
* $Id: lv_hashmap.c,v 1.11 2006-02-17 22:00:17 synap Exp $
7+
* $Id: lv_hashmap.c,v 1.11.2.1 2006-09-16 18:43:45 descender Exp $
88
*
99
* This program is free software; you can redistribute it and/or modify
1010
* it under the terms of the GNU Lesser General Public License as
@@ -35,7 +35,7 @@
3535
typedef struct _HashmapIterContext HashmapIterContext;
3636

3737
struct _HashmapIterContext {
38-
VisObject *object;
38+
VisObject object;
3939

4040
int index;
4141
int retrieved;

libvisual/libvisual/lv_list.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Sepp Wijnands <[email protected]>,
1313
* Tom Wimmenhove <[email protected]>
1414
*
15-
* $Id: lv_list.c,v 1.30 2006-01-22 13:23:37 synap Exp $
15+
* $Id: lv_list.c,v 1.30.2.1 2006-09-16 18:43:45 descender Exp $
1616
*
1717
* This program is free software; you can redistribute it and/or modify
1818
* it under the terms of the GNU Lesser General Public License as
@@ -46,7 +46,7 @@
4646
typedef struct _ListIterContext ListIterContext;
4747

4848
struct _ListIterContext {
49-
VisObject *object;
49+
VisObject object;
5050

5151
VisListEntry *cur;
5252
};

0 commit comments

Comments
 (0)