summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2009-06-06 15:41:58 +0000
committerRalf Baechle <ralf@linux-mips.org>2009-06-06 15:41:58 +0000
commit43c203254916f4cacba96d14b494d80cdb87d8f6 (patch)
treee5dde8783353ecb066428f55a7eca1076c3fd895
parent6637bec77e8644441492a1de206e6adbe80bfc58 (diff)
Fix build error caused by variable definition after statement.
-rw-r--r--call/call.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/call/call.c b/call/call.c
index 3810f0e..3a94225 100644
--- a/call/call.c
+++ b/call/call.c
@@ -2074,8 +2074,9 @@ int cmd_call(char *call[], int mode)
}
if (bytes > 0) {
unsigned long offset = 0L;
- sevenplus = FALSE;
int err = 0;
+
+ sevenplus = FALSE;
if (uploadfile != -1) {
statline(mode,
"Ignored. Type ~s to stop upload");