summaryrefslogtreecommitdiffstats
path: root/src/lib/syscall_msg.C
diff options
context:
space:
mode:
authorMonte Copeland <copelanm@us.ibm.com>2011-07-11 16:24:13 -0500
committerMonte K. Copeland <copelanm@us.ibm.com>2011-07-14 14:43:22 -0500
commitaccc0f438eca45dcd1058a195d192d51a6f1c4aa (patch)
tree7f98f3f58252536eeace7cb25257d7b8bb502fad /src/lib/syscall_msg.C
parentb9558dcb65612b60a20719ea489dadda4776e1e4 (diff)
downloadtalos-hostboot-accc0f438eca45dcd1058a195d192d51a6f1c4aa.tar.gz
talos-hostboot-accc0f438eca45dcd1058a195d192d51a6f1c4aa.zip
syscall cleanup/scrub
- 2nd pass - 3rd pass Change-Id: I5eb314c0c635aa42bc4d841065d9a9a786f8be4b Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/198 Tested-by: Jenkins Server Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com> Reviewed-by: MIKE J. JONES <mjjones@us.ibm.com>
Diffstat (limited to 'src/lib/syscall_msg.C')
-rw-r--r--src/lib/syscall_msg.C4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/syscall_msg.C b/src/lib/syscall_msg.C
index f3d99a624..3e7c23632 100644
--- a/src/lib/syscall_msg.C
+++ b/src/lib/syscall_msg.C
@@ -11,9 +11,9 @@ msg_q_t msg_q_create()
return (msg_q_t) _syscall0(MSGQ_CREATE);
}
-int msg_q_destroy(msg_q_t q)
+void msg_q_destroy(msg_q_t q)
{
- return (int64_t)_syscall1(MSGQ_DESTROY, q);
+ _syscall1(MSGQ_DESTROY, q);
}
int msg_q_register(msg_q_t q, const char* name)
OpenPOWER on IntegriCloud