From 7b1017d0013a2900b82cdf36bd2a9ef387c9aec5 Mon Sep 17 00:00:00 2001 From: tpearson Date: Fri, 16 Sep 2011 07:19:58 +0000 Subject: Stabilize the SAK system git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1253985 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kdmlib/kdmtsak.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kdmlib') diff --git a/kdmlib/kdmtsak.cpp b/kdmlib/kdmtsak.cpp index 82155d29c..e1ed9ddc9 100644 --- a/kdmlib/kdmtsak.cpp +++ b/kdmlib/kdmtsak.cpp @@ -36,12 +36,12 @@ int main (int argc, char *argv[]) mPipe_fd = open(FIFO_FILE, O_RDONLY | O_NONBLOCK); numread = 1; while (numread > 0) { - numread = read(mPipe_fd, readbuf, 128); + numread = read(mPipe_fd, readbuf, 6); } // Now wait for SAK press mPipe_fd = open(FIFO_FILE, O_RDONLY); if (mPipe_fd > -1) { - numread = read(mPipe_fd, readbuf, 128); + numread = read(mPipe_fd, readbuf, 6); readbuf[numread] = 0; readbuf[127] = 0; close(mPipe_fd); -- cgit v1.2.1