From: Antony Pavlov <antonynpavlov@gmail.com>
To: Holger Schurig <holgerschurig@gmail.com>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 06/10] meminfo: purely cosmetical changes
Date: Fri, 30 May 2014 13:43:14 +0400 [thread overview]
Message-ID: <20140530134314.2d9862834321657fd113b1e3@gmail.com> (raw)
In-Reply-To: <1401440856-6145-7-git-send-email-holgerschurig@gmail.com>
On Fri, 30 May 2014 11:07:32 +0200
Holger Schurig <holgerschurig@gmail.com> wrote:
"cosmetic"?
I can't find the word "cosmetical" in my dictionary.
P.S. I by myself often write "unificate" instead of "unify" :)
> Signed-off-by: Holger Schurig <holgerschurig@gmail.com>
> ---
> common/dlmalloc.c | 8 ++++----
> common/tlsf_malloc.c | 2 +-
> 2 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/common/dlmalloc.c b/common/dlmalloc.c
> index f006206..d831e90 100644
> --- a/common/dlmalloc.c
> +++ b/common/dlmalloc.c
> @@ -1942,13 +1942,13 @@ static void malloc_update_mallinfo(void)
> void malloc_stats(void)
> {
> malloc_update_mallinfo();
> - printf("max system bytes = %10u\n", (unsigned int)(max_total_mem));
> - printf("system bytes = %10u\n",
> + printf("Maximum system memory: %u\n", (unsigned int)(max_total_mem));
> + printf("Current system memory: %u\n",
> (unsigned int)(sbrked_mem + mmapped_mem));
> - printf("in use bytes = %10u\n",
> + printf("in use: %u\n",
> (unsigned int)(current_mallinfo.uordblks + mmapped_mem));
> #if HAVE_MMAP
> - fprintf(stderr, "max mmap regions = %10u\n",
> + printf("Maximum mmap'ed mmap regions: %u\n",
> (unsigned int) max_n_mmaps);
> #endif
> }
> diff --git a/common/tlsf_malloc.c b/common/tlsf_malloc.c
> index aa8fc13..a3541d8 100644
> --- a/common/tlsf_malloc.c
> +++ b/common/tlsf_malloc.c
> @@ -97,5 +97,5 @@ void malloc_stats(void)
>
> tlsf_walk_heap(tlsf_mem_pool, malloc_walker, &s);
>
> - printf("used: %10zu\nfree: %10zu\n", s.used, s.free);
> + printf("used: %zu\nfree: %zu\n", s.used, s.free);
> }
> --
> 1.7.10.4
>
>
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
--
--
Best regards,
Antony Pavlov
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2014-05-30 9:32 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-30 9:07 [PATCH 00/10] miscelleanous beautification patches Holger Schurig
2014-05-30 9:05 ` Holger Schurig
2014-05-30 9:07 ` [PATCH 01/10] drvlist: factor the driver list out of 'devinfo' Holger Schurig
2014-05-30 9:09 ` Holger Schurig
2014-05-30 9:07 ` [PATCH 02/10] devinfo: reduce indentation Holger Schurig
2014-05-30 9:08 ` Holger Schurig
2014-05-30 9:49 ` Antony Pavlov
2014-05-30 9:07 ` [PATCH 03/10] devinfo: make the output of "devinfo DEVICE" nicer Holger Schurig
2014-05-30 9:07 ` Holger Schurig
2014-06-02 8:19 ` Juergen Borleis
2014-06-02 9:23 ` Holger Schurig
2014-06-02 10:09 ` Juergen Borleis
2014-06-02 10:28 ` Holger Schurig
2014-05-30 9:07 ` [PATCH 04/10] parameters: only show possible enumerations if there are any Holger Schurig
2014-05-30 9:09 ` Holger Schurig
2014-05-30 9:07 ` [PATCH 05/10] net: show enetaddr in lowercase Holger Schurig
2014-05-30 9:07 ` [PATCH 06/10] meminfo: purely cosmetical changes Holger Schurig
2014-05-30 9:43 ` Antony Pavlov [this message]
2014-05-30 9:37 ` Holger Schurig
2014-05-30 9:07 ` [PATCH 07/10] misc: upper-case some abbreviations Holger Schurig
2014-05-30 9:07 ` [PATCH 08/10] bootm: beautify output Holger Schurig
2014-05-30 9:06 ` Holger Schurig
2014-05-30 9:07 ` [PATCH 09/10] beautify PHY driver names Holger Schurig
2014-05-30 9:17 ` Alexander Aring
2014-05-30 9:30 ` Holger Schurig
2014-05-30 10:03 ` Alexander Aring
2014-06-02 6:59 ` Sascha Hauer
2014-05-30 9:07 ` [PATCH 10/10] device drivers: harmonize underscore in " Holger Schurig
2014-06-02 7:16 ` Sascha Hauer
2014-06-02 7:21 ` [PATCH 00/10] miscelleanous beautification patches Sascha Hauer
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=20140530134314.2d9862834321657fd113b1e3@gmail.com \
--to=antonynpavlov@gmail.com \
--cc=barebox@lists.infradead.org \
--cc=holgerschurig@gmail.com \
/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