aboutsummaryrefslogtreecommitdiff
path: root/src/graph
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2013-04-01 01:53:29 +0000
committerdos-reis <gdr@axiomatics.org>2013-04-01 01:53:29 +0000
commit3a4195e4293dce547f9fd671063d9b65ca14cc56 (patch)
tree503e7c0a091920be1626452a1a9ddd4def926836 /src/graph
parent86c534a99a9eda6be04595e2fecc433e51ddaed2 (diff)
downloadopen-axiom-3a4195e4293dce547f9fd671063d9b65ca14cc56.tar.gz
More C cleanups
Diffstat (limited to 'src/graph')
-rw-r--r--src/graph/view2D/spadAction2d.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/graph/view2D/spadAction2d.c b/src/graph/view2D/spadAction2d.c
index eafd4325..60789eb1 100644
--- a/src/graph/view2D/spadAction2d.c
+++ b/src/graph/view2D/spadAction2d.c
@@ -69,7 +69,7 @@ extern int viewAloned;
int
spadAction(void)
{
- int code,viewCommand;
+ int viewCommand;
float f1,f2;
int i1,i2,i3,viewGoAhead;
static int ack = 1;
@@ -121,7 +121,7 @@ spadAction(void)
break;
case closeAll2D:
- code = check(write(Socket,&ack,intSize));
+ check(write(Socket,&ack,intSize));
goodbye(-1);
case ps2D:
@@ -282,7 +282,7 @@ spadAction(void)
ack++;
- code = check(write(Socket,&ack,intSize));
+ check(write(Socket,&ack,intSize));
return(0);
}