diff options
author | Adam Jackson <ajax@nwnk.net> | 2004-09-22 04:38:03 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2004-09-22 04:38:03 +0000 |
commit | d7514b9162648f894211884b199ef2edc458aa86 (patch) | |
tree | 0fca45d80402683f07a05428dd7676f4265d5b6b | |
parent | 269012e6014d7c23bf6805ba14ca0b598cdd6313 (diff) |
Bug #1252, #1253, #1255, #1256: Various typo fixes from Dave Jones.
-rw-r--r-- | hw/xfree86/common/xf86Helper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xfree86/common/xf86Helper.c b/hw/xfree86/common/xf86Helper.c index 822cdfd8b..525f76835 100644 --- a/hw/xfree86/common/xf86Helper.c +++ b/hw/xfree86/common/xf86Helper.c @@ -254,7 +254,7 @@ xf86DeleteScreen(int scrnIndex, int flags) if (pScrn->drv) pScrn->drv->refCount--; - if (pScrn->privates); + if (pScrn->privates) xfree(pScrn->privates); xf86ClearEntityListForScreen(scrnIndex); @@ -346,7 +346,7 @@ xf86DeleteInput(InputInfoPtr pInp, int flags) if (pInp->drv) pInp->drv->refCount--; - if (pInp->private); + if (pInp->private) xfree(pInp->private); /* Remove the entry from the list. */ |