Revert accidental change that should not have been included in r345475.

I had changed this value as part of a local experiment, and neglected to
change it back before committing the other changes.
This commit is contained in:
Ian Lepore 2019-03-24 18:02:27 +00:00
parent 67da50a047
commit 6d51c0fe72
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=345476

View File

@ -197,7 +197,7 @@ intr_event_update(struct intr_event *ie)
/* Run through all the handlers updating values. */
CK_SLIST_FOREACH(ih, &ie->ie_handlers, ih_next) {
if (strlen(ie->ie_fullname) + strlen(ih->ih_name) + 2 <
if (strlen(ie->ie_fullname) + strlen(ih->ih_name) + 1 <
sizeof(ie->ie_fullname)) {
strcat(ie->ie_fullname, " ");
strcat(ie->ie_fullname, ih->ih_name);