about summary refs log tree commit diff
path: root/Src/math.c
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2006-07-26 13:19:25 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2006-07-26 13:19:25 +0000
commit44e2e5979c53b42702efb5b044b55e2b0ec7d8b2 (patch)
tree9d1da6ed86e7244f227d7a94164104bc9a0d55a5 /Src/math.c
parent09bc7ee2b56239020d1ef6bb1f5d7b4ef9f19db1 (diff)
downloadzsh-44e2e5979c53b42702efb5b044b55e2b0ec7d8b2.tar.gz
zsh-44e2e5979c53b42702efb5b044b55e2b0ec7d8b2.tar.xz
zsh-44e2e5979c53b42702efb5b044b55e2b0ec7d8b2.zip
22558: declaration after statement
Diffstat (limited to 'Src/math.c')
-rw-r--r--Src/math.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/math.c b/Src/math.c
index fe5f7b74b..243096be5 100644
--- a/Src/math.c
+++ b/Src/math.c
@@ -264,8 +264,8 @@ static int
 zzlex(void)
 {
     int cct = 0;
-    yyval.type = MN_INTEGER;
     char *ie;
+    yyval.type = MN_INTEGER;
 
     for (;; cct = 0)
 	switch (*ptr++) {