aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2009-10-11 00:36:20 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2009-10-11 00:36:20 +0200
commit0e5e4eaf7bbfa5d71db1ea410f734c8458a2071e (patch)
tree0c2c1b314fdfa6621d5fcca868b9755239242f64
parentf26e98f4e939846b73d83e5173ab35478d166331 (diff)
downloadbusybox-w32-0e5e4eaf7bbfa5d71db1ea410f734c8458a2071e.tar.gz
busybox-w32-0e5e4eaf7bbfa5d71db1ea410f734c8458a2071e.tar.bz2
busybox-w32-0e5e4eaf7bbfa5d71db1ea410f734c8458a2071e.zip
ash: trivial shrink by using smaller int
function old new delta copynode 197 196 -1 calcsize 127 126 -1 nodesize 54 27 -27 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 0/3 up/down: 0/-29) Total: -29 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--shell/ash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 6ce621534..b0b85358f 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -1164,7 +1164,7 @@ enum {
1164 /* Most machines require the value returned from malloc to be aligned 1164 /* Most machines require the value returned from malloc to be aligned
1165 * in some way. The following macro will get this right 1165 * in some way. The following macro will get this right
1166 * on many machines. */ 1166 * on many machines. */
1167 SHELL_SIZE = sizeof(union {int i; char *cp; double d; }) - 1, 1167 SHELL_SIZE = sizeof(union { int i; char *cp; double d; }) - 1,
1168 /* Minimum size of a block */ 1168 /* Minimum size of a block */
1169 MINSIZE = SHELL_ALIGN(504), 1169 MINSIZE = SHELL_ALIGN(504),
1170}; 1170};
@@ -7771,7 +7771,7 @@ static char *funcstring; /* block to allocate strings from */
7771#define EV_TESTED 02 /* exit status is checked; ignore -e flag */ 7771#define EV_TESTED 02 /* exit status is checked; ignore -e flag */
7772#define EV_BACKCMD 04 /* command executing within back quotes */ 7772#define EV_BACKCMD 04 /* command executing within back quotes */
7773 7773
7774static const short nodesize[N_NUMBER] = { 7774static const uint8_t nodesize[N_NUMBER] = {
7775 [NCMD ] = SHELL_ALIGN(sizeof(struct ncmd)), 7775 [NCMD ] = SHELL_ALIGN(sizeof(struct ncmd)),
7776 [NPIPE ] = SHELL_ALIGN(sizeof(struct npipe)), 7776 [NPIPE ] = SHELL_ALIGN(sizeof(struct npipe)),
7777 [NREDIR ] = SHELL_ALIGN(sizeof(struct nredir)), 7777 [NREDIR ] = SHELL_ALIGN(sizeof(struct nredir)),