diff options
| author | Michael Brown | 2007-04-30 01:53:39 +0200 |
|---|---|---|
| committer | Michael Brown | 2007-04-30 01:53:39 +0200 |
| commit | d40761d7258cd509d698c210fc6c478bd7788c6b (patch) | |
| tree | c7f419e1e189936d706a53c26fc9f236e0118b6d /src/core/xfer.c | |
| parent | Skeleton job control interface (diff) | |
| download | ipxe-d40761d7258cd509d698c210fc6c478bd7788c6b.tar.gz ipxe-d40761d7258cd509d698c210fc6c478bd7788c6b.tar.xz ipxe-d40761d7258cd509d698c210fc6c478bd7788c6b.zip | |
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.c | 2 |
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, }; |
