aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/xfer.c
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2007-04-29 23:53:39 +0000
committerMichael Brown <mcb30@etherboot.org>2007-04-29 23:53:39 +0000
commitd40761d7258cd509d698c210fc6c478bd7788c6b (patch)
treec7f419e1e189936d706a53c26fc9f236e0118b6d /src/core/xfer.c
parent36bfb6edbb3f89fc1807df5538bfd2a932149ed6 (diff)
downloadipxe-d40761d7258cd509d698c210fc6c478bd7788c6b.tar.gz
Add (and use) generic reference counter, to improve signal:noise ratio
in code defining reference-counted objects.
Diffstat (limited to 'src/core/xfer.c')
-rw-r--r--src/core/xfer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/xfer.c b/src/core/xfer.c
index d34808166..f927269ea 100644
--- a/src/core/xfer.c
+++ b/src/core/xfer.c
@@ -230,7 +230,7 @@ struct xfer_interface_operations null_xfer_ops = {
struct xfer_interface null_xfer = {
.intf = {
.dest = &null_xfer.intf,
- .refcnt = null_refcnt,
+ .refcnt = NULL,
},
.op = &null_xfer_ops,
};