diff options
author | Aurelien Larcher <aurelien.larcher@gmail.com> | 2020-05-21 22:48:21 +0200 |
---|---|---|
committer | Dan McDonald <danmcd@joyent.com> | 2020-05-22 10:49:35 -0400 |
commit | 3579e3c35b601b3f66174315be3026281487541a (patch) | |
tree | 3238c98620fa429792120b670a2a1c1f091b0cee /usr/src | |
parent | eb9a1df2aeb866bf1de4494433b6d7e5fa07b3ae (diff) | |
download | illumos-joyent-3579e3c35b601b3f66174315be3026281487541a.tar.gz |
12776 libbe: missing typedef in libbe.h
Reviewed by: Andy Fiddaman <andy@omniosce.org>
Reviewed by: Toomas Soome <tsoome@me.com>
Approved by: Dan McDonald <danmcd@joyent.com>
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/lib/libbe/common/libbe.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/src/lib/libbe/common/libbe.h b/usr/src/lib/libbe/common/libbe.h index 83dffd2dcd..b670d86ce5 100644 --- a/usr/src/lib/libbe/common/libbe.h +++ b/usr/src/lib/libbe/common/libbe.h @@ -81,7 +81,7 @@ extern "C" { * in sync please make sure to add any new error messages at the end * of this enumeration. */ -enum { +typedef enum { BE_SUCCESS = 0, BE_ERR_ACCESS = 4000, /* permission denied */ BE_ERR_ACTIVATE_CURR, /* Activation of current BE failed */ |