diff options
author | Taylor Holberton <tay10r@protonmail.com> | 2020-06-30 16:09:38 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-30 16:09:38 -0500 |
commit | 393f0a6e738755ae6e3c3eb88b7a1684d9f0829c (patch) | |
tree | 144c12e4d2f0ee9907466b8cbd3c481b671811f4 /src | |
parent | 8646e47e16cf38415f3b091d391cfdaf5ba8a9c1 (diff) | |
parent | 0c279d81e722e8e7c285dae22666675787bd30e9 (diff) |
Merge pull request #164 from E5ten/cmake-standard
cmake: specify c99
Diffstat (limited to 'src')
-rw-r--r-- | src/snd_card_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/snd_card_plugin.c b/src/snd_card_plugin.c index 17912a2..c6d4baf 100644 --- a/src/snd_card_plugin.c +++ b/src/snd_card_plugin.c @@ -81,7 +81,7 @@ enum snd_node_type snd_utils_get_node_type(struct snd_node *node) node->ops->get_int(node->dev_node, "type", &val); return val; -}; +} static int snd_utils_resolve_symbols(struct snd_node *node) { |