1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-04 09:09:56 +00:00

Prefer PJDLOG_ASSERT()/PJDLOG_ABORT() over assert().

MFC after:	3 days
This commit is contained in:
Pawel Jakub Dawidek 2011-09-27 08:21:00 +00:00
parent 7f46e21d82
commit 00bddd18b3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=225785

View File

@ -36,7 +36,6 @@ __FBSDID("$FreeBSD$");
#include <sys/stat.h>
#include <sys/sysctl.h>
#include <assert.h>
#include <err.h>
#include <errno.h>
#include <fcntl.h>
@ -433,19 +432,19 @@ main(int argc, char *argv[])
pjdlog_debug_set(debug);
cfg = yy_config_parse(cfgpath, true);
assert(cfg != NULL);
PJDLOG_ASSERT(cfg != NULL);
switch (cmd) {
case CMD_CREATE:
control_create(argc, argv, mediasize, extentsize, keepdirty);
/* NOTREACHED */
assert(!"What are we doing here?!");
PJDLOG_ABORT("What are we doing here?!");
break;
case CMD_DUMP:
/* Dump metadata from local component of the given resource. */
control_dump(argc, argv);
/* NOTREACHED */
assert(!"What are we doing here?!");
PJDLOG_ABORT("What are we doing here?!");
break;
case CMD_ROLE:
/* Change role for the given resources. */
@ -476,7 +475,7 @@ main(int argc, char *argv[])
}
break;
default:
assert(!"Impossible command!");
PJDLOG_ABORT("Impossible command!");
}
/* Setup control connection... */
@ -523,7 +522,7 @@ main(int argc, char *argv[])
error = control_status(nv);
break;
default:
assert(!"Impossible command!");
PJDLOG_ABORT("Impossible command!");
}
exit(error);