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


Ignore:
Timestamp:
2008-03-27T13:56:21Z (16 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/connect.c

    r047aa46 re190a89b  
    3737        int phid;
    3838
    39         printf("Choose one service: 0:10000....9:10009 (Q to skip)\n");
     39        printf("Choose one service: 0:10000....9:10009 (q to skip)\n");
    4040        do {
    4141                c = getchar();
    42                 if (c == 'Q' || c == 'q')
     42                if ((c == 'Q') || (c == 'q'))
    4343                        return TEST_SKIPPED;
    4444        } while (c < '0' || c > '9');
Note: See TracChangeset for help on using the changeset viewer.