mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2025-01-13 19:50:25 +03:00
Fix enum compiler warning
Generally it's a good idea to use enums for switch statements, but in this case it causes warning because the enum is really a set of flags. These flags are OR'ed together in some cases resulting in values which are not part of the original enum. This causes compiler warning such as this about invalid cases. error: case value ‘33’ not in enumerated type ‘zprop_source_t’ To handle this we simply case the enum to an int for the switch statement. This leaves all other enum type checking in place and effectively disabled these warnings.
This commit is contained in:
parent
45066d1f20
commit
a31a70bbd1
@ -355,7 +355,7 @@ dsl_prop_predict_sync(dsl_dir_t *dd, dsl_prop_setarg_t *psa)
|
||||
source = ZPROP_SRC_LOCAL;
|
||||
}
|
||||
|
||||
switch (source) {
|
||||
switch ((int)source) {
|
||||
case ZPROP_SRC_NONE:
|
||||
/* Revert to the received value, if any. */
|
||||
err = zap_lookup(mos, zapobj, recvdstr, 8, 1,
|
||||
@ -594,7 +594,7 @@ dsl_prop_set_sync(void *arg1, void *arg2, dmu_tx_t *tx)
|
||||
inheritstr = kmem_asprintf("%s%s", propname, ZPROP_INHERIT_SUFFIX);
|
||||
recvdstr = kmem_asprintf("%s%s", propname, ZPROP_RECVD_SUFFIX);
|
||||
|
||||
switch (source) {
|
||||
switch ((int)source) {
|
||||
case ZPROP_SRC_NONE:
|
||||
/*
|
||||
* revert to received value, if any (inherit -S)
|
||||
|
Loading…
Reference in New Issue
Block a user