Minor cosmetic cleanup

- Remove spurious trailing whitespace in licensing header
- Remove unnecessary semi-colon after comment [*]

MFC after: 3 days
Submitted by: pfg [*]
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
Enji Cooper 2016-04-18 07:48:27 +00:00
parent 7fd35136d9
commit 9c7defc3bf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=298196

View file

@ -3,7 +3,7 @@
* All rights reserved.
*
* This software was developed at the University of Cambridge Computer
* Laboratory with support from a grant from Google, Inc.
* Laboratory with support from a grant from Google, Inc.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@ -115,7 +115,7 @@ main(__unused int argc, __unused char *argv[])
err(-1, "listen");
if (pthread_create(&accept_thread, NULL, do_accept, NULL) != 0)
err(-1, "pthread_create");
sleep(1); /* Easier than using a CV. */;
sleep(1); /* Easier than using a CV. */
do_fork();
exit(0);
}