File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tools/testing/selftests/ipc Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ int restore_queue(struct msgque_data *msgque)
69
69
printf ("msgsnd failed (%m)\n" );
70
70
ret = - errno ;
71
71
goto destroy ;
72
- };
72
+ }
73
73
}
74
74
return 0 ;
75
75
@@ -180,15 +180,15 @@ int fill_msgque(struct msgque_data *msgque)
180
180
IPC_NOWAIT ) != 0 ) {
181
181
printf ("First message send failed (%m)\n" );
182
182
return - errno ;
183
- };
183
+ }
184
184
185
185
msgbuf .mtype = ANOTHER_MSG_TYPE ;
186
186
memcpy (msgbuf .mtext , ANOTHER_TEST_STRING , sizeof (ANOTHER_TEST_STRING ));
187
187
if (msgsnd (msgque -> msq_id , & msgbuf .mtype , sizeof (ANOTHER_TEST_STRING ),
188
188
IPC_NOWAIT ) != 0 ) {
189
189
printf ("Second message send failed (%m)\n" );
190
190
return - errno ;
191
- };
191
+ }
192
192
return 0 ;
193
193
}
194
194
You can’t perform that action at this time.
0 commit comments