Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2784 → Rev 2785

/trunk/uspace/app/tester/ipc/send_sync.c
38,9 → 38,11
static int msgid = 1;
char c;
 
printf("Select phoneid to send msg: 2-9\n");
printf("Select phoneid to send msg: 2-9 (Q to skip)\n");
do {
c = getchar();
if (c == 'Q' || c == 'q')
return TEST_SKIPPED;
} while (c < '2' || c > '9');
phoneid = c - '0';