[Style] Do not declare new types if not really necessary.

This commit is contained in:
Piotr Esden-Tempski
2013-06-30 22:20:51 -07:00
parent 647b878031
commit beeb9c3f65
4 changed files with 20 additions and 20 deletions

View File

@@ -36,9 +36,9 @@
/** @brief Set the MAC algorithm
*/
void crypto_set_mac_algorithm(crypto_mode_mac_t mode)
void crypto_set_mac_algorithm(enum crypto_mode_mac mode)
{
crypto_set_algorithm((crypto_mode_t) mode);
crypto_set_algorithm((enum crypto_mode) mode);
}
/**