Commit da4565d39d2058214d6e8acd0418849bc7e4b7ed

Cast status to avoid compiler warning.
main.c
(1 / 1)
  
5050 /* This is basically a programming error, but it should at least
5151 be able to tell us *what* programming error. */
5252 char buf[32];
53 snprintf(buf, sizeof(buf)-1, "unknown: %d", status);
53 snprintf(buf, sizeof(buf)-1, "unknown: %d", (int)status);
5454 err=buf;
5555 }
5656 assert(err != NULL);