summaryrefslogtreecommitdiff
path: root/xkb
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-09-21 20:42:47 -0400
commitce78b0cd2b1c35d60eb5683a1d00222aa4797c79 (patch)
treecc774df00ef8a811157a90d067b10fb9aef725c2 /xkb
parentc1655f0fd457f9bdf0857c5e0904639925bb01f1 (diff)
Close with Pclose() that which we open with Popen().
Diffstat (limited to 'xkb')
-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);
}