fix "comma at end of enumerator list" warnings in wolfcrypt for C89 compatibility, mostly by just snipping out unneeded comma, but several using WOLF_ENUM_DUMMY_LAST_ELEMENT() to preserve gated enum values as-is.

This commit is contained in:
Daniel Pouzzner
2023-04-14 13:48:03 -05:00
parent 2bcf6bd3ca
commit ac85cfa3d5
25 changed files with 105 additions and 87 deletions

View File

@@ -45,7 +45,7 @@ enum {
BAD = 0xFF, /* invalid encoding */
PAD = '=',
BASE64_MIN = 0x2B,
BASE16_MIN = 0x30,
BASE16_MIN = 0x30
};