diff options
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/dc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/dc.c b/miscutils/dc.c index 872b814cd..ced5149df 100644 --- a/miscutils/dc.c +++ b/miscutils/dc.c | |||
@@ -8,7 +8,7 @@ | |||
8 | 8 | ||
9 | /* Tiny RPN calculator, because "expr" didn't give me bitwise operations. */ | 9 | /* Tiny RPN calculator, because "expr" didn't give me bitwise operations. */ |
10 | 10 | ||
11 | enum { STACK_SIZE = sizeof(bb_common_bufsiz1) / sizeof(double) }; | 11 | enum { STACK_SIZE = COMMON_BUFSIZE / sizeof(double) }; |
12 | 12 | ||
13 | #define stack ((double*)&bb_common_bufsiz1) | 13 | #define stack ((double*)&bb_common_bufsiz1) |
14 | static unsigned int pointer; | 14 | static unsigned int pointer; |