diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-09-16 07:19:58 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-09-16 07:19:58 +0000 |
commit | 7b1017d0013a2900b82cdf36bd2a9ef387c9aec5 (patch) | |
tree | b16a72a532f28396dcaa1a6f269cfe92a8c18f0d /kdmlib/kdmtsak.cpp | |
parent | 96c46c4f95bc317b7742d1569672dc4310e17fe4 (diff) | |
download | tdebase-7b1017d0013a2900b82cdf36bd2a9ef387c9aec5.tar.gz tdebase-7b1017d0013a2900b82cdf36bd2a9ef387c9aec5.zip |
Stabilize the SAK system
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1253985 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdmlib/kdmtsak.cpp')
-rw-r--r-- | kdmlib/kdmtsak.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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); |