summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/mqueueunlink.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-01-04 14:00:38 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-01-04 14:00:38 +0000
commita148f561c2ad6597da2c19d2c83e53969b64f63f (patch)
tree314c1b99537a7e207a73a3ec916b2f0af5998b8c /cpukit/posix/src/mqueueunlink.c
parentRemoved unitialized variable warning. (diff)
downloadrtems-a148f561c2ad6597da2c19d2c83e53969b64f63f.tar.bz2
Removed warnings.
Diffstat (limited to '')
-rw-r--r--cpukit/posix/src/mqueueunlink.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/cpukit/posix/src/mqueueunlink.c b/cpukit/posix/src/mqueueunlink.c
index 6628e09542..4c219eecea 100644
--- a/cpukit/posix/src/mqueueunlink.c
+++ b/cpukit/posix/src/mqueueunlink.c
@@ -37,10 +37,9 @@ int mq_unlink(
const char *name
)
{
- int status;
+ int status;
register POSIX_Message_queue_Control *the_mq;
- Objects_Id the_mq_id;
- Objects_Locations location;
+ Objects_Id the_mq_id;
_Thread_Disable_dispatch();