diff options
author | silby <silby@FreeBSD.org> | 2004-02-05 08:29:27 +0000 |
---|---|---|
committer | silby <silby@FreeBSD.org> | 2004-02-05 08:29:27 +0000 |
commit | e7d6996c0b8f1812a868fd13e10979e1ebf398fb (patch) | |
tree | 4ad966e88534474c890e7361899b648333345438 /sys/kern/uipc_mbuf.c | |
parent | 11c7633086124afc56ef9a7946732f6f0de26d17 (diff) | |
download | FreeBSD-src-e7d6996c0b8f1812a868fd13e10979e1ebf398fb.zip FreeBSD-src-e7d6996c0b8f1812a868fd13e10979e1ebf398fb.tar.gz |
Style fixes: don't indent variable names.
Submitted by: bde
Diffstat (limited to 'sys/kern/uipc_mbuf.c')
-rw-r--r-- | sys/kern/uipc_mbuf.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/kern/uipc_mbuf.c b/sys/kern/uipc_mbuf.c index d36f9fb..a59eb1d 100644 --- a/sys/kern/uipc_mbuf.c +++ b/sys/kern/uipc_mbuf.c @@ -875,8 +875,8 @@ m_length(struct mbuf *m0, struct mbuf **last) struct mbuf * m_defrag(struct mbuf *m0, int how) { - struct mbuf *m_new = NULL, *m_final = NULL; - int progress = 0, length; + struct mbuf *m_new = NULL, *m_final = NULL; + int progress = 0, length; if (!(m0->m_flags & M_PKTHDR)) return (m0); @@ -967,8 +967,8 @@ nospace: struct mbuf * m_fragment(struct mbuf *m0, int how, int length) { - struct mbuf *m_new = NULL, *m_final = NULL; - int progress = 0; + struct mbuf *m_new = NULL, *m_final = NULL; + int progress = 0; if (!(m0->m_flags & M_PKTHDR)) return (m0); @@ -1034,8 +1034,8 @@ nospace: struct mbuf * m_uiotombuf(struct uio *uio, int how, int len) { - struct mbuf *m_new = NULL, *m_final = NULL; - int progress = 0, error = 0, length, total; + struct mbuf *m_new = NULL, *m_final = NULL; + int progress = 0, error = 0, length, total; if (len > 0) total = min(uio->uio_resid, len); |