Wrap a line longer than 80 characters.

This commit is contained in:
Maxime Henrion 2002-07-19 17:44:44 +00:00
parent 095dcf9966
commit 0f3b0aa87c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=100370

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);
}