summaryrefslogtreecommitdiffstats
path: root/src/gui/embedded/qwslock.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/embedded/qwslock.cpp')
-rw-r--r--src/gui/embedded/qwslock.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/embedded/qwslock.cpp b/src/gui/embedded/qwslock.cpp
index 0d65b61177..a64dc3d9c4 100644
--- a/src/gui/embedded/qwslock.cpp
+++ b/src/gui/embedded/qwslock.cpp
@@ -114,7 +114,7 @@ QWSLock::~QWSLock()
QWSSignalHandler::instance()->removeSemaphore(semId);
}
-static bool forceLock(int semId, int semNum, int)
+static bool forceLock(int semId, unsigned short semNum, int)
{
int ret;
do {
@@ -135,7 +135,7 @@ static bool forceLock(int semId, int semNum, int)
return (ret != -1);
}
-static bool up(int semId, int semNum)
+static bool up(int semId, unsigned short semNum)
{
int ret;
do {
@@ -148,7 +148,7 @@ static bool up(int semId, int semNum)
return (ret != -1);
}
-static bool down(int semId, int semNum)
+static bool down(int semId, unsigned short semNum)
{
int ret;
do {
@@ -161,7 +161,7 @@ static bool down(int semId, int semNum)
return (ret != -1);
}
-static int getValue(int semId, int semNum)
+static int getValue(int semId, unsigned short semNum)
{
int ret;
do {
@@ -210,7 +210,7 @@ void QWSLock::unlock(LockType type)
return;
}
- const int semNum = type;
+ const unsigned short semNum = type;
int ret;
do {
sembuf sops = {semNum, 1, 0};