Minor style nits - return ().

This commit is contained in:
Nicholas Marriott
2012-04-01 20:53:47 +00:00
parent 20d10c608d
commit c829bdf537
4 changed files with 7 additions and 7 deletions

View File

@ -115,7 +115,7 @@ winlink_find_by_window_id(struct winlinks *wwl, u_int id)
if (wl->window->id == id)
return (wl);
}
return NULL;
return (NULL);
}
int
@ -273,7 +273,7 @@ window_find_by_id(u_int id)
if (w->id == id)
return (w);
}
return NULL;
return (NULL);
}
struct window *