diff options
| author | Michael Brown | 2007-07-08 23:06:33 +0200 |
|---|---|---|
| committer | Michael Brown | 2007-07-08 23:06:33 +0200 |
| commit | cc80750694feec31139640987c326da9fbafd1c1 (patch) | |
| tree | 0c7c611bfcb3630db3b3e0a6a3382d16d80535df /src/include/gpxe | |
| parent | Ready to start testing (diff) | |
| parent | Add strcspn() and strndup() (diff) | |
| download | ipxe-cc80750694feec31139640987c326da9fbafd1c1.tar.gz ipxe-cc80750694feec31139640987c326da9fbafd1c1.tar.xz ipxe-cc80750694feec31139640987c326da9fbafd1c1.zip | |
Merge branch 'master' into iscsi-update
Diffstat (limited to 'src/include/gpxe')
| -rw-r--r-- | src/include/gpxe/refcnt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/gpxe/refcnt.h b/src/include/gpxe/refcnt.h index 0930a5777..68e0fd4b0 100644 --- a/src/include/gpxe/refcnt.h +++ b/src/include/gpxe/refcnt.h @@ -38,7 +38,7 @@ struct refcnt { void ( * free ) ( struct refcnt *refcnt ); }; -extern void ref_get ( struct refcnt *refcnt ); +extern struct refcnt * ref_get ( struct refcnt *refcnt ); extern void ref_put ( struct refcnt *refcnt ); #endif /* _GPXE_REFCNT_H */ |
