Skip to content

Commit

Permalink
line 64 error might not occur now.
Browse files Browse the repository at this point in the history
  • Loading branch information
gopalshankar committed Oct 21, 2011
1 parent 0a4fd8a commit 9a4a7ec
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions servers_pm/msgque.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/* Might go in misc.c
*
* Message Queue Multicast Implementation
Expand Down Expand Up @@ -60,7 +59,7 @@ PRIVATE int setUserProperty( MQueue *mq, int type, int state ) {

PRIVATE int insertMessage( MQueue *mq, char *message ) {
if( mq->queueLen == MQ_MAX_MESSAGES )
return (MQ_ERR_MAX_MESSAGES)
return (MQ_ERR_MAX_MESSAGES);

mq->queueLen= mq->queueLen + 1;

Expand Down

0 comments on commit 9a4a7ec

Please sign in to comment.