Changeset e190a89b in mainline for uspace/app/tester/ipc/send_sync.c


Ignore:
Timestamp:
2008-03-27T13:56:21Z (17 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2f60a529
Parents:
047aa46
Message:

revision of 2785

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/tester/ipc/send_sync.c

    r047aa46 re190a89b  
    3939        char c;
    4040
    41         printf("Select phoneid to send msg: 2-9 (Q to skip)\n");
     41        printf("Select phoneid to send msg: 2-9 (q to skip)\n");
    4242        do {
    4343                c = getchar();
    44                 if (c == 'Q' || c == 'q')
     44                if ((c == 'Q') || (c == 'q'))
    4545                        return TEST_SKIPPED;
    4646        } while (c < '2' || c > '9');
Note: See TracChangeset for help on using the changeset viewer.