From b711d74eafdf8f94ca04472aba600b9f05b6a5ee Mon Sep 17 00:00:00 2001 From: Mike Silbersack Date: Thu, 5 Feb 2004 08:29:27 +0000 Subject: [PATCH] Style fixes: don't indent variable names. Submitted by: bde --- sys/kern/uipc_mbuf.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sys/kern/uipc_mbuf.c b/sys/kern/uipc_mbuf.c index d36f9fbe8ff8..a59eb1d7fce3 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 @@ m_defrag(struct mbuf *m0, int how) 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 @@ m_fragment(struct mbuf *m0, int how, int length) 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);