VirtualBox

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

Additions/x11/vboxmouse: fix some warnings

Location:
trunk/src/VBox/Additions/x11/vboxmouse/xorg70
Files:
2 edited

Legend:

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

    r28800 r31415  
    474474        int target;           /* target button */
    475475        int lockM,targetM;    /* bitmasks for drag lock, target */
    476         int i, j;             /* indexes */
     476        int k, j;             /* indexes */
    477477        char *s1;             /* parse input string */
    478478        DragLockPtr pLock;
     
    538538
    539539        /* for each nibble */
    540         for (i = 0; i < NIB_COUNT; i++) {
     540        for (k = 0; k < NIB_COUNT; k++) {
    541541            /* for each possible set of bits for that nibble */
    542542            for (j = 0; j < NIB_SIZE; j++) {
     
    554554                     * if otherbits =0 then only 1 bit set
    555555                     * so j=fM
    556                      * nib_table[i][fM] already calculated if fM has
     556                     * nib_table[k][fM] already calculated if fM has
    557557                     * only 1 bit set.
    558                      * nib_table[i][j] has already been filled in
     558                     * nib_table[k][j] has already been filled in
    559559                     * by previous loop. otherwise
    560                      * otherbits < j so nibtable[i][otherbits]
     560                     * otherbits < j so nibtable[k][otherbits]
    561561                     * has already been calculated.
    562562                     */
    563563                    if (otherbits)
    564                         pLock->nib_table[i][j] =
    565                                      pLock->nib_table[i][fM] |
    566                                      pLock->nib_table[i][otherbits];
     564                        pLock->nib_table[k][j] =
     565                                     pLock->nib_table[k][fM] |
     566                                     pLock->nib_table[k][otherbits];
    567567
    568568                }
     
    36543654        case AUTOPROBE_SWITCH_PROTOCOL:
    36553655        {
    3656             MouseProtocolID proto;
     3656            MouseProtocolID prot;
    36573657            void *defaults;
    36583658            AP_DBG(("State SWITCH_PROTOCOL\n"));
    3659             proto = mPriv->protoList[mPriv->protocolID++];
    3660             if (proto == PROT_UNKNOWN)
     3659            prot = mPriv->protoList[mPriv->protocolID++];
     3660            if (prot == PROT_UNKNOWN)
    36613661                mPriv->autoState = AUTOPROBE_SWITCHSERIAL;
    3662             else if (!(defaults = GetProtocol(proto)->defaults)
     3662            else if (!(defaults = GetProtocol(prot)->defaults)
    36633663                       || (mPriv->serialDefaultsNum == -1
    36643664                           && (defaults == msDefaults))
     
    36673667                           == defaults)) {
    36683668                AP_DBG(("Changing Protocol to %s\n",
    3669                         ProtocolIDToName(proto)));
    3670                 SetMouseProto(pMse,proto);
     3669                        ProtocolIDToName(prot)));
     3670                SetMouseProto(pMse,prot);
    36713671                FlushButtons(pMse);
    36723672                RESET_VALIDATION;
  • trunk/src/VBox/Additions/x11/vboxmouse/xorg70/pnp.c

    r7261 r31415  
    714714            if (u == 0x03) {
    715715                /* found IntelliMouse now try IntelliExplorer */
    716                 unsigned char seq[] = { 243, 200, 243, 200, 243, 80 };
    717                 if (ps2SendPacket(pInfo,seq,sizeof(seq))) {
     716                unsigned char seq2[] = { 243, 200, 243, 200, 243, 80 };
     717                if (ps2SendPacket(pInfo,seq2,sizeof(seq2))) {
    718718                    u = ps2GetDeviceID(pInfo);
    719719                    if (u == 0x04)
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