david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

[refcnt] Fix embedded image building

Modified-by: Michael Brown <mcb30@ipxe.org>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Alessandro Salvatori 2010-07-05 11:01:23 +01:00 committed by Michael Brown
parent c84a2c81a7
commit 3cefc5a3e0
1 changed files with 3 additions and 3 deletions

View File

@ -69,10 +69,10 @@ ref_init ( struct refcnt *refcnt,
/**
* Initialise a static reference counter
*
* @v free Free containing object
* @v free_fn Free containing object
*/
#define REF_INIT( free ) { \
.free = free, \
#define REF_INIT( free_fn ) { \
.free = free_fn, \
}
extern struct refcnt * ref_get ( struct refcnt *refcnt );