Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2785 → Rev 2786

/trunk/uspace/app/tester/ipc/hangup.c
37,10 → 37,10
int res;
int phoneid;
 
printf("Select phoneid to hangup: 2-9 (Q to skip)\n");
printf("Select phoneid to hangup: 2-9 (q to skip)\n");
do {
c = getchar();
if (c == 'Q' || c == 'q')
if ((c == 'Q') || (c == 'q'))
return TEST_SKIPPED;
} while (c < '2' || c > '9');
phoneid = c - '0';
/trunk/uspace/app/tester/ipc/send_sync.c
38,10 → 38,10
static int msgid = 1;
char c;
 
printf("Select phoneid to send msg: 2-9 (Q to skip)\n");
printf("Select phoneid to send msg: 2-9 (q to skip)\n");
do {
c = getchar();
if (c == 'Q' || c == 'q')
if ((c == 'Q') || (c == 'q'))
return TEST_SKIPPED;
} while (c < '2' || c > '9');
phoneid = c - '0';
/trunk/uspace/app/tester/ipc/send_async.c
41,10 → 41,10
static int msgid = 1;
char c;
 
printf("Select phoneid to send msg: 2-9 (Q to skip)\n");
printf("Select phoneid to send msg: 2-9 (q to skip)\n");
do {
c = getchar();
if (c == 'Q' || c == 'q')
if ((c == 'Q') || (c == 'q'))
return TEST_SKIPPED;
} while (c < '2' || c > '9');
phoneid = c - '0';
/trunk/uspace/app/tester/ipc/connect.c
36,10 → 36,10
int svc;
int phid;
 
printf("Choose one service: 0:10000....9:10009 (Q to skip)\n");
printf("Choose one service: 0:10000....9:10009 (q to skip)\n");
do {
c = getchar();
if (c == 'Q' || c == 'q')
if ((c == 'Q') || (c == 'q'))
return TEST_SKIPPED;
} while (c < '0' || c > '9');