* grub-core/kern/misc.c (grub_vsnprintf_real): Remove needless explicit
\0 checking. Saves 70 bytes on compressed image.
This commit is contained in:
parent
ac1feb61d2
commit
f8401f760c
2 changed files with 15 additions and 8 deletions
|
@ -1,3 +1,10 @@
|
|||
2013-10-21 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/kern/misc.c (grub_vsnprintf_real): Remove needless explicit
|
||||
\0 checking.
|
||||
|
||||
Saves 70 bytes on compressed image.
|
||||
|
||||
2013-10-21 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/kern/misc.c (grub_strtoull): Remove needless *ptr != 0
|
||||
|
|
|
@ -732,30 +732,30 @@ grub_vsnprintf_real (char *str, grub_size_t max_len, const char *fmt0, va_list a
|
|||
|
||||
curn = n++;
|
||||
|
||||
if (*fmt && *fmt =='-')
|
||||
if (*fmt =='-')
|
||||
fmt++;
|
||||
|
||||
p = fmt;
|
||||
|
||||
while (*fmt && grub_isdigit (*fmt))
|
||||
while (grub_isdigit (*fmt))
|
||||
fmt++;
|
||||
|
||||
if (*fmt && *fmt == '$')
|
||||
if (*fmt == '$')
|
||||
{
|
||||
curn = grub_strtoull (p, 0, 10) - 1;
|
||||
fmt++;
|
||||
}
|
||||
|
||||
if (*fmt && *fmt =='-')
|
||||
if (*fmt =='-')
|
||||
fmt++;
|
||||
|
||||
while (*fmt && grub_isdigit (*fmt))
|
||||
while (grub_isdigit (*fmt))
|
||||
fmt++;
|
||||
|
||||
if (*fmt && *fmt =='.')
|
||||
if (*fmt =='.')
|
||||
fmt++;
|
||||
|
||||
while (*fmt && grub_isdigit (*fmt))
|
||||
while (grub_isdigit (*fmt))
|
||||
fmt++;
|
||||
|
||||
c = *fmt++;
|
||||
|
@ -841,7 +841,7 @@ grub_vsnprintf_real (char *str, grub_size_t max_len, const char *fmt0, va_list a
|
|||
|
||||
rescan:;
|
||||
|
||||
if (*fmt && *fmt =='-')
|
||||
if (*fmt =='-')
|
||||
{
|
||||
rightfill = 1;
|
||||
fmt++;
|
||||
|
|
Loading…
Reference in a new issue