@@ -84,10 +84,10 @@ func MQCALLBACK_Go(hConn C.MQHCONN, mqmd *C.MQMD, mqgmo *C.MQGMO, mqBuffer C.PMQ
8484 gocbc .CallbackArea = info .callbackArea
8585 gocbc .ConnectionArea = info .connectionArea
8686
87- // Get the data
87+ // Get the data
8888 b := C .GoBytes (unsafe .Pointer (mqBuffer ), C .int (mqcbc .DataLength ))
8989
90- // And finally call the user function
90+ // And finally call the user function
9191 info .callbackFunction (info .hObj , gomd , gogmo , b , gocbc , mqreturn )
9292 }
9393}
@@ -129,7 +129,7 @@ func (object *MQObject) CB(goOperation int32, gocbd *MQCBD, gomd *MQMD, gogmo *M
129129 return & mqreturn
130130 }
131131
132- // Add or remove the control information in the map used by the callback routines
132+ // Add or remove the control information in the map used by the callback routines
133133 switch mqOperation {
134134 case C .MQOP_DEREGISTER :
135135 delete (cbMap , key )
@@ -158,7 +158,7 @@ func (x *MQQueueManager) Ctl(goOperation int32, goctlo *MQCTLO) error {
158158 mqOperation = C .MQLONG (goOperation )
159159 copyCTLOtoC (& mqctlo , goctlo )
160160
161- // Need to make sure control information is available before the callback
161+ // Need to make sure control information is available before the callback
162162 // is enabled. So this gets setup even if the MQCTL fails.
163163 key := makePartialKey (x .hConn )
164164 for k , info := range cbMap {
0 commit comments