summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* buffnum is shared between subs.c and fancy.cjoerg2020-04-222-5/+5
|
* Disks can sense vibes, DTrace confirms it.sevan2020-04-021-0/+3
| | | https://youtu.be/tDacjrSCeq4
* Andrew Weatherall's tattoo and a track on A Pox On The Pioneers album.sevan2020-02-221-0/+2
| | | | | https://pbs.twimg.com/media/ERAuddhU4AAFv3w?format=jpg&name=orig Story: https://www.dummymag.com/features/andrew-weatherall-interview-it-s-bollocks-it-s-discos-tell-me-tales-of-the/
* something I apparently forgot to commit months or years agodholland2020-02-161-0/+3
|
* games/hack: Suppress -Werror=stringop-truncation error.fox2020-02-081-1/+2
| | | | | | | Add GCC_NO_STRINGOP_TRUNCATION to hack.end.c to prevent build failure. Error was reported when build.sh was run with MKLIBCSANITIZER=yes flag. Reviewed by: kamil@
* games/hack: Revert the strlcpy(1) change since this changes expected ↵fox2020-02-071-3/+3
| | | | | behavior from strncpy(3). Reviewed by: kamil@
* games/hack: Fix -Wstringop-truncation warning.fox2020-02-071-3/+3
| | | | | | | Replace strncpy(3) with strlcpy(3). Error was reported when build.sh was run with MKLIBCSANITIZER=yes flag. Reviewed by: kamil@
* games/battlestar: Replace snprintf(3) with strlcpy(3) for better performance.fox2020-02-061-6/+6
| | | Reviewed by: kamil@
* games/battlestar: Fix the -Werror=restrict warning.fox2020-02-051-6/+6
| | | | | | | | Replace strcpy(1) with the safer snprintf(3) which guarantees NULL termination of strings. Error was reported when build.sh was run with MKLIBCSANITIZER=yes flag. Reviewed by: kamil@
* s/saftey/safety/msaitoh2019-12-271-2/+2
|
* s/opration/operation/msaitoh2019-12-271-1/+1
|
* Introspection. From "Surely You're Joking, Mr. Feynman!"sevan2019-12-031-0/+6
|
* https://twitter.com/sei6r/status/1182433546331279360sevan2019-11-101-0/+3
|
* Definition of austerity by Alexei Sayle on Radio 4sevan2019-11-101-0/+4
| | | https://web.archive.org/web/20190916192807/https://www.bbc.co.uk/sounds/play/m0008bbc
* Gcc-8 bug confusion with restrict on sh3christos2019-10-291-1/+5
|
* Chris' happiest momentsevan2019-10-271-0/+6
| | | http://bbc.co.uk/programmes/b09b1zbb
* adjust a fallthru comment and add a missing break.mrg2019-10-131-3/+5
|
* introduce some common variables for use in GCC warning disables:mrg2019-10-134-4/+13
| | | | | | | | | | | | | | | | | GCC_NO_FORMAT_TRUNCATION -Wno-format-truncation (GCC 7/8) GCC_NO_STRINGOP_TRUNCATION -Wno-stringop-truncation (GCC 8) GCC_NO_STRINGOP_OVERFLOW -Wno-stringop-overflow (GCC 8) GCC_NO_CAST_FUNCTION_TYPE -Wno-cast-function-type (GCC 8) use these to turn off warnings for most GCC-8 complaints. many of these are false positives, most of the real bugs are already commited, or are yet to come. we plan to introduce versions of (some?) of these that use the "-Wno-error=" form, which still displays the warnings but does not make it an error, and all of the above will be re-considered as either being "fix me" (warning still displayed) or "warning is wrong."
* expand the internal consistency checks in truedirec() to avoidmrg2019-10-051-7/+10
| | | | | fallthrough cases. now if direction turns up wrong (it should not, but this code can't tell that, and convert it to an enum that would also fix this, is more effort than this is worth.
* convert HAVE_GCC == 7 to HAVE_GCC >= 7.mrg2019-09-292-4/+4
|
* End sentence with a dot.wiz2019-09-021-2/+2
|
* Document history.sevan2019-09-011-2/+9
| | | | | https://www.bell-labs.com/usr/dmr/www/man11.pdf Between v1 & v6 UNIX, bcd was rewritten in C, but I don't know if which version, hence I've skipped mentioning it.
* Donnie Darkosevan2019-08-221-0/+2
|
* The mother of all demossevan2019-07-261-0/+7
|
* Use .Dl for displays with single command. Specify .Bl -width with theuwe2019-07-231-15/+11
| | | same formatting as the actual tags.
* strfile is installed, don't claim it isn't.uwe2019-07-231-6/+2
|
* Prettify formatting.uwe2019-07-231-11/+11
|
* Use double dash to simulate em dashsevan2019-07-221-1/+1
|
* Use \(em to get an emphasis dashsevan2019-07-221-4/+4
|
* Art for the masses - The Dream Machinesevan2019-07-221-0/+3
| | | The text used an em dash which I've replaced with a coma here.
* Report the users score _after_ the game has ended and the screen haspgoyette2019-03-191-2/+8
| | | | | | been restored to pre-game state. Otherwise, the user gets a message that their score did (or more likely, did not) improve over their previous score, yet the user has no indication of what the current score actually was!
* Shorter than a season - The Soul Of A New Machinesevan2019-02-241-0/+4
|
* add fallthroughchristos2019-02-181-2/+3
|
* apply -Wno-error=implicit-fallthrough on files that have fallthrumrg2019-02-042-2/+16
| | | comments but are missed by the current checker.
* - done() can return in wizard mode. don't NOTREACHED'd itmrg2019-02-041-3/+3
| | | but break instead.
* - 'cango' is used beyond a bool type. make it an int.mrg2019-02-041-3/+6
| | | - add a couple of fallthru comments.
* - enlarge buffer to avoid snprintf() truncationmrg2019-02-033-9/+9
|
* - avoid multipling a boolean value, use &&.mrg2019-02-031-3/+3
|
* - add or adjust /* FALLTHROUGH */ where appropriatemrg2019-02-0315-30/+75
| | | | - add __unreachable() after functions that can return but won't in this case, and thus can't be marked __dead easily
* Add Alfred North Whitehead quote.sevan2019-01-211-0/+4
|
* Incite the "Purple Cow" wrath of Gelett Burgess upon ourselves.jakllsch2019-01-131-0/+9
|
* More appropriate line-wrapping for previous.pgoyette2018-12-151-2/+2
|
* Some advice from Adam Savage / Alex Jasonsevan2018-12-151-0/+4
| | | https://www.reddit.com/r/mythbusters/comments/3wgqgv/the_origin_of_the_remember_kids_the_only/
* Advice from Bob Morrissevan2018-10-031-0/+3
| | | https://www.ieee-security.org/Cipher/ConfReports/conf-rep-Crypto95.html
* I've been on an Ed Wood binge.sevan2018-09-121-0/+6
|
* replace ipf->npfmaxv2018-09-021-2/+2
|
* typodholland2018-08-251-1/+1
|
* Try freebsd's pkg-info as wellmaya2018-08-161-1/+8
| | | From John Hein, via Nikolai Lifanov. PR misc/52684
* fix the previous. the code was right, just badly formatted before.mrg2018-06-241-4/+3
| | | should fix infinite loops reported in some cases.
* Restore the MKGROFF=bo MKCXX=yes buildkamil2018-06-111-2/+2
| | | | | | Mark the documentation in dc(1), gprof(1), rogue(6) and fsck_ffs(8) with the .roff flag in SUBDIR. Sponsored by <The NetBSD Foundation>