Prefer not_reached() over assert(false) where appropriate.

This commit is contained in:
Jason Evans
2013-10-21 14:56:27 -07:00
parent 0135fb806e
commit 6556e28be1
5 changed files with 12 additions and 13 deletions

View File

@@ -484,8 +484,7 @@ malloc_conf_init(void)
}
break;
} default:
/* NOTREACHED */
assert(false);
not_reached();
buf[0] = '\0';
opts = buf;
}