# HG changeset patch # User Lucas Thompson # Date 1485903248 0 # Node ID 7532233f8e49a96e86368e03d30f99f5a7ab9e6f # Parent 59c89b0e937507158e72fc6109ba233e02f803a2 Fix typo / wrong indexing in calling code to parsing configured output descriptor. diff -r 59c89b0e9375 -r 7532233f8e49 vamp-json/VampJson.h --- a/vamp-json/VampJson.h Tue Jan 31 22:47:12 2017 +0000 +++ b/vamp-json/VampJson.h Tue Jan 31 22:54:08 2017 +0000 @@ -305,7 +305,7 @@ return {}; } - od = toConfiguredOutputDescriptor(j, err); + od = toConfiguredOutputDescriptor(j["configured"], err); if (failed(err)) return {}; toBasicDescriptor(j["basic"], od, err);