git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: William Pursell <bill.pursell@gmail.com>
To: git@vger.kernel.org
Subject: [PATCH] Whitespace: replace spaces with tabs.
Date: Sat, 09 Jun 2007 23:25:54 +0100	[thread overview]
Message-ID: <466B28F2.7030403@gmail.com> (raw)


Two lines of alloc.c contain indentation using spaces, while the 
remainder of the file uses tabs.  This change brings those 2 lines
into conformance with the predominant indentation style.
---
  alloc.c |    4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/alloc.c b/alloc.c
index 216c23a..baf9fce 100644
--- a/alloc.c
+++ b/alloc.c
@@ -59,13 +59,13 @@ DEFINE_ALLOCATOR(object, union any_object)

  static void report(const char* name, unsigned int count, size_t size)
  {
-    fprintf(stderr, "%10s: %8u (" SZ_FMT " kB)\n", name, count, size);
+       fprintf(stderr, "%10s: %8u (" SZ_FMT " kB)\n", name, count, size);
  }

  #undef SZ_FMT

  #define REPORT(name)   \
-    report(#name, name##_allocs, name##_allocs*sizeof(struct name) >> 10)
+       report(#name, name##_allocs, name##_allocs*sizeof(struct name) 
 >> 10)

  void alloc_report(void)
  {
--
1.4.4.4

                 reply	other threads:[~2007-06-09 22:16 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=466B28F2.7030403@gmail.com \
    --to=bill.pursell@gmail.com \
    --cc=git@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).