PrintAvailability should print description and availability, current
implementation is:
static void PrintAvailability(BOOL var, const char *description) {
printf("s: %s\n", description, (var ? "Available" : "Not available"));
}
1st parameter of printf has typo in it: "s: %s\n" should be "%s: %s\n"
Original issue reported on code.google.com by ssubbo...@gmail.com on 19 Mar 2015 at 1:33
Original issue reported on code.google.com by
ssubbo...@gmail.com
on 19 Mar 2015 at 1:33