VirtualBox

Ignore:
Timestamp:
Aug 5, 2010 3:49:48 PM (14 years ago)
Author:
vboxsync
Message:

Additions/x11/vboxmouse: fix some warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Additions/x11/vboxmouse/xorg71/mouse.c

    r29712 r31415  
    489489        int target;           /* target button */
    490490        int lockM,targetM;    /* bitmasks for drag lock, target */
    491         int i, j;             /* indexes */
     491        int k, j;             /* indexes */
    492492        char *s1;             /* parse input string */
    493493        DragLockPtr pLock;
     
    553553
    554554        /* for each nibble */
    555         for (i = 0; i < NIB_COUNT; i++) {
     555        for (k = 0; k < NIB_COUNT; k++) {
    556556            /* for each possible set of bits for that nibble */
    557557            for (j = 0; j < NIB_SIZE; j++) {
     
    569569                     * if otherbits =0 then only 1 bit set
    570570                     * so j=fM
    571                      * nib_table[i][fM] already calculated if fM has
     571                     * nib_table[k][fM] already calculated if fM has
    572572                     * only 1 bit set.
    573                      * nib_table[i][j] has already been filled in
     573                     * nib_table[k][j] has already been filled in
    574574                     * by previous loop. otherwise
    575                      * otherbits < j so nibtable[i][otherbits]
     575                     * otherbits < j so nibtable[k][otherbits]
    576576                     * has already been calculated.
    577577                     */
    578578                    if (otherbits)
    579                         pLock->nib_table[i][j] =
    580                                      pLock->nib_table[i][fM] |
    581                                      pLock->nib_table[i][otherbits];
     579                        pLock->nib_table[k][j] =
     580                                     pLock->nib_table[k][fM] |
     581                                     pLock->nib_table[k][otherbits];
    582582
    583583                }
     
    36693669        case AUTOPROBE_SWITCH_PROTOCOL:
    36703670        {
    3671             MouseProtocolID proto;
     3671            MouseProtocolID prot;
    36723672            void *defaults;
    36733673            AP_DBG(("State SWITCH_PROTOCOL\n"));
    3674             proto = mPriv->protoList[mPriv->protocolID++];
    3675             if (proto == PROT_UNKNOWN)
     3674            prot = mPriv->protoList[mPriv->protocolID++];
     3675            if (prot == PROT_UNKNOWN)
    36763676                mPriv->autoState = AUTOPROBE_SWITCHSERIAL;
    3677             else if (!(defaults = GetProtocol(proto)->defaults)
     3677            else if (!(defaults = GetProtocol(prot)->defaults)
    36783678                       || (mPriv->serialDefaultsNum == -1
    36793679                           && (defaults == msDefaults))
     
    36823682                           == defaults)) {
    36833683                AP_DBG(("Changing Protocol to %s\n",
    3684                         ProtocolIDToName(proto)));
    3685                 SetMouseProto(pMse,proto);
     3684                        ProtocolIDToName(prot)));
     3685                SetMouseProto(pMse,prot);
    36863686                FlushButtons(pMse);
    36873687                RESET_VALIDATION;
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette