projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7edf7d1
)
r300/compiler: Add return statement to rc_list()
author
Tom Stellard
<tstellar@gmail.com>
Sat, 30 Apr 2011 19:52:32 +0000
(12:52 -0700)
committer
Tom Stellard
<tstellar@gmail.com>
Sat, 30 Apr 2011 19:57:09 +0000
(12:57 -0700)
src/mesa/drivers/dri/r300/compiler/radeon_list.c
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/dri/r300/compiler/radeon_list.c
b/src/mesa/drivers/dri/r300/compiler/radeon_list.c
index 9b2ba80a8fa3346535c757d28e32bf40da5a7109..811c908a81afdbf7de10b87517dfa8a9792d4908 100644
(file)
--- a/
src/mesa/drivers/dri/r300/compiler/radeon_list.c
+++ b/
src/mesa/drivers/dri/r300/compiler/radeon_list.c
@@
-38,6
+38,8
@@
struct rc_list * rc_list(struct memory_pool * pool, void * item)
new->Item = item;
new->Next = NULL;
new->Prev = NULL;
+
+ return new;
}
void rc_list_add(struct rc_list ** list, struct rc_list * new_value)