Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Sync program's usage() with manpage's SYNOPSIS. | ru | 2005-02-10 | 1 | -1/+1 |
| | |||||
* | Make NULL a (void*)0 whereever possible, and fix the warnings(-Werror) | markm | 2004-03-05 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | that this provokes. "Wherever possible" means "In the kernel OR NOT C++" (implying C). There are places where (void *) pointers are not valid, such as for function pointers, but in the special case of (void *)0, agreement settles on it being OK. Most of the fixes were NULL where an integer zero was needed; many of the fixes were NULL where ascii <nul> ('\0') was needed, and a few were just "other". Tested on: i386 sparc64 | ||||
* | Use __FBSDID() to quiet GCC 3.3 warnings. | obrien | 2003-05-03 | 1 | -4/+2 |
| | |||||
* | style(9): use NULL when assigning/comparing a char *, | johan | 2003-04-23 | 1 | -1/+1 |
| | | | | | | consitently compare fileid with 0 using == and !=. Reviewed by: silence on @audit | ||||
* | Properly cast a size argument to an unsigned type. | roam | 2001-06-29 | 1 | -1/+2 |
| | | | | Thanks to: dd for noticing the need for a cast. | ||||
* | Silence warnings on the Alpha: don't assume size_t is an int. | dd | 2001-06-29 | 1 | -1/+1 |
| | |||||
* | Add kldconfig(8), a utility to modify the kernel module search path. | roam | 2001-06-29 | 1 | -0/+444 |
Reviewed by: -arch, -audit |