Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[refcnt] Fix embedded image building
Modified-by: Michael Brown <mcb30@ipxe.org>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
  • Loading branch information
sandr8 authored and mcb30 committed Jul 5, 2010
1 parent c84a2c8 commit 3cefc5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/include/ipxe/refcnt.h
Expand Up @@ -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 );
Expand Down

0 comments on commit 3cefc5a

Please sign in to comment.