Ignore:
Timestamp:
Dec 24, 2002, 8:44:35 AM (23 years ago)
Author:
umoeller
Message:

Misc fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/procstat.c

    r229 r238  
    9494
    9595    if (!ppps)
    96         return (ERROR_INVALID_PARAMETER);
     96        return ERROR_INVALID_PARAMETER;
    9797
    9898    // changed allocation V0.9.10 (2001-04-08) [umoeller]:
     
    187187    }
    188188
    189     return (pReturn);
     189    return pReturn;
    190190}
    191191
     
    222222    }
    223223
    224     return (pReturn);
     224    return pReturn;
    225225}
    226226
     
    300300    }
    301301
    302     return (rc);
     302    return rc;
    303303}
    304304
     
    349349    }
    350350
    351     return (ulrc);
     351    return ulrc;
    352352}
    353353
     
    394394    }
    395395
    396     return (ulrc);
     396    return ulrc;
    397397}
    398398
     
    483483    if (prc16QueryThreadInfo(pps, usPID, usTID, &prct))
    484484        ulrc = prct.ulPriority;
    485     return (ulrc);
     485    return ulrc;
    486486}
    487487
     
    533533
    534534            if (arc == NO_ERROR)
    535                 return ((PQTOPLEVEL32)pBuf);
     535                return (PQTOPLEVEL32)pBuf;
    536536            else
    537537                DosFreeMem(pBuf);
     
    594594
    595595    if (pProcThis->ulRecType == 1)
    596         return (pProcThis);
    597     else
    598         return NULL;
     596        return pProcThis;
     597
     598    return NULL;
    599599}
    600600
     
    649649    {
    650650        if (i == usSemID)
    651             return (pSemThis);
     651            return pSemThis;
    652652
    653653        i++;
     
    678678    {
    679679        if (pSemThis->usIndex == usSemID)
    680             return (pSemThis);
     680            return pSemThis;
    681681
    682682        pSemThis = pSemThis->pNext;
     
    704704    {
    705705        if (pShrMem->usHandle == usShrMemID)
    706             return (pShrMem);
     706            return pShrMem;
    707707        pShrMem = pShrMem->pNext;
    708708    }
     
    759759        {
    760760            if (pFile->paFiles[ul].usSFN == usFileID)
    761                 return (pFile);
     761                return pFile;
    762762        }
    763763
Note: See TracChangeset for help on using the changeset viewer.