All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Whitespace: replace spaces with tabs.
@ 2007-06-09 22:25 William Pursell
  0 siblings, 0 replies; only message in thread
From: William Pursell @ 2007-06-09 22:25 UTC (permalink / raw)
  To: git


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

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2007-06-09 22:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-09 22:25 [PATCH] Whitespace: replace spaces with tabs William Pursell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.