Skip to content

Commit 56ef98f

Browse files
committed
temp: fix apple II build?
1 parent 2aa8864 commit 56ef98f

File tree

1 file changed

+2
-2
lines changed
  • Applications/util

1 file changed

+2
-2
lines changed

Applications/util/cu.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ static void quit()
108108
static int parsespeed(char *str, speed_t *s)
109109
{
110110
register int i;
111-
register int b = atoi(optarg);
111+
register int b = atoi(str);
112112
for (i = 0; i < sizeof(baud) / sizeof(baud[0]); i++)
113113
{
114114
if (baud[i] == b)
@@ -132,6 +132,7 @@ int main(int argc, char *argv[])
132132
char escchar = '~';
133133
int opt;
134134
char *remotename = NULL;
135+
char escStr[3];
135136

136137
if (isatty(0) != 1)
137138
{
@@ -226,7 +227,6 @@ int main(int argc, char *argv[])
226227
uint_fast8_t is_nl = 1;
227228
uint_fast8_t w;
228229
atexit(restore);
229-
char escStr[3];
230230
if (escchar <= 0x1A)
231231
{
232232
escStr[0] = '^';

0 commit comments

Comments
 (0)