Browse Source

mos: Check for board-specific build of bin libs

CL: mos: Check for board-specific build of bin libs

PUBLISHED_FROM=a69ff44655e86eaef06e0ce52f0d8833321946b9
Deomid Ryabkov 7 years ago
parent
commit
f2d4efa604
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frozen.c

+ 1 - 1
frozen.c

@@ -1225,7 +1225,7 @@ int json_vsetf(const char *s, int len, struct json_out *out,
         json_printf(out, ",");
       }
       if (off > 0 && json_path[off - 1] != '.') break;
-      json_printf(out, "%.*Q:", 1, json_path + off);
+      json_printf(out, "%.*Q:", n, json_path + off);
       off += n;
       if (json_path[off] != '\0') {
         json_printf(out, "%c", json_path[off] == '.' ? '{' : '[');