Minor cleanup of some new configurations; warning removal with GCC 4.8.2

This commit is contained in:
Gregory Nutt
2014-03-06 13:31:13 -06:00
parent b19e1aa426
commit bb0e358048

View File

@@ -194,7 +194,7 @@ static int df_man_readable_handler(FAR const char *mountpoint,
/* Find the label for size */ /* Find the label for size */
which = 0; which = 0;
while (size >= 9999 || (size & 0x3ff) == 0 && size) while (size >= 9999 || ((size & 0x3ff) == 0 && size != 0))
{ {
which++; which++;
size >>= 10; size >>= 10;
@@ -205,7 +205,7 @@ static int df_man_readable_handler(FAR const char *mountpoint,
/* Find the label for free */ /* Find the label for free */
which = 0; which = 0;
while (free >= 9999 || (free & 0x3ff) == 0 && free) while (free >= 9999 || ((free & 0x3ff) == 0 && free != 0))
{ {
which++; which++;
free >>= 10; free >>= 10;
@@ -216,7 +216,7 @@ static int df_man_readable_handler(FAR const char *mountpoint,
/* Find the label for used */ /* Find the label for used */
which = 0; which = 0;
while (used >= 9999 || (used & 0x3ff) == 0 && used) while (used >= 9999 || ((used & 0x3ff) == 0 && used != 0))
{ {
which++; which++;
used >>= 10; used >>= 10;