Wrap a line longer than 80 characters.

This commit is contained in:
mux 2002-07-19 17:44:44 +00:00
parent 1efa02c36e
commit e753050d42

View File

@ -84,8 +84,8 @@ eventhandler_register(struct eventhandler_list *list, char *name,
/* Do we need to create the list? */
if (list == NULL) {
if ((list = malloc(sizeof(struct eventhandler_list) + strlen(name) + 1,
M_EVENTHANDLER, M_NOWAIT)) == NULL) {
if ((list = malloc(sizeof(struct eventhandler_list) + strlen(name)
+ 1, M_EVENTHANDLER, M_NOWAIT)) == NULL) {
mtx_unlock(&eventhandler_mutex);
return(NULL);
}