aboutsummaryrefslogtreecommitdiff
path: root/miscutils
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils')
-rw-r--r--miscutils/dc.c2
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
11enum { STACK_SIZE = sizeof(bb_common_bufsiz1) / sizeof(double) }; 11enum { STACK_SIZE = COMMON_BUFSIZE / sizeof(double) };
12 12
13#define stack ((double*)&bb_common_bufsiz1) 13#define stack ((double*)&bb_common_bufsiz1)
14static unsigned int pointer; 14static unsigned int pointer;