K 10 svn:author V 4 ngie K 8 svn:date V 27 2016-01-04T03:47:31.538988Z K 7 svn:log V 890 MFC r293130,r293131,r293134,r293135: r293130: Rename nitems and string variables to avoid collisions Rename the `nitems` variable to `num_items` to avoid collisions with the macro in sys/param.h for counting elements in an array Similarly, rename `string` to `string_arr` to avoid future collisions with potential keywords, as well as make it clear that `string_arr` isn't a char* value, but instead a char** value. r293131: Convert another `string` variable to `string_arr` missed in r293130 r293134: Use `nitems(x)` macro instead of using hardcoded numbers for indices into the nvlists Convert some of the variables from int to unsigned int to squelch -Wsign-compare warnings when converting hardcoded values to nitems(..) r293135: Remove free'ing of an uninitialized variable Just remove it completely from the test as it's initialized but unused apart from the free(3) call END