diff options
author | Yannick Gicquel <yannick.gicquel@iot.bzh> | 2016-09-28 09:48:31 +0200 |
---|---|---|
committer | Yannick Gicquel <yannick.gicquel@iot.bzh> | 2016-10-11 17:09:07 +0200 |
commit | 8c8a801130da286ce50cc3861b1725f7187b5fa8 (patch) | |
tree | c7441533069946a002bb0d762529efd8874aa2fa | |
parent | 9da9fcb89cd50689c7a80c0e12856eeb984e0327 (diff) |
node: fixup default string for agl_player nodes.
Signed-off-by: Yannick Gicquel <yannick.gicquel@iot.bzh>
-rw-r--r-- | node.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -157,7 +157,7 @@ agl_node_type agl_node_type_from_str (const char *str) if (pa_streq (str, "agl_radio")) type = agl_radio; - else if (pa_streq (str, "agl_music")) + else if (pa_streq (str, "agl_player")) type = agl_player; else if (pa_streq (str, "agl_navigator")) type = agl_navigator; |