summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@benzedrine.nwnk.net>2006-09-21 20:42:47 -0400
committerAdam Jackson <ajax@benzedrine.nwnk.net>2006-10-11 16:01:19 -0400
commitc559940c108642068b6107b33ce1e9a0760b5d5f (patch)
treeb988a4244cb34bf67f8abe55afe2151a7c65f0f4
parentb84fb534fb5e494a57ee76317e8f136a87170f5f (diff)
Close with Pclose() that which we open with Popen().
(cherry picked from ce78b0cd2b1c35d60eb5683a1d00222aa4797c79 commit)
-rw-r--r--xkb/ddxList.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xkb/ddxList.c b/xkb/ddxList.c
index f94a869ae..034f694ed 100644
--- a/xkb/ddxList.c
+++ b/xkb/ddxList.c
@@ -269,7 +269,7 @@ char tmpname[PATH_MAX];
#ifndef WIN32
if (haveDir)
fclose(in);
- else if ((rval=pclose(in))!=0) {
+ else if ((rval=Pclose(in))!=0) {
if (xkbDebugFlags)
ErrorF("xkbcomp returned exit code %d\n",rval);
}