Fix formatting

This commit is contained in:
Miodrag Milanovic 2019-06-24 10:09:25 +02:00
parent bc1450a5cd
commit 560e3899d8

View File

@ -750,15 +750,15 @@ void json_import(Context *ctx, string modname, JsonNode *node)
bool upto = false; bool upto = false;
int start_offset = 0; int start_offset = 0;
if (here->data_dict.count("upto") != 0) { if (here->data_dict.count("upto") != 0) {
JsonNode *val = here->data_dict.at("upto"); JsonNode *val = here->data_dict.at("upto");
if (val->type == 'N') if (val->type == 'N')
upto = val->data_number != 0; upto = val->data_number != 0;
} }
if (here->data_dict.count("offset") != 0) { if (here->data_dict.count("offset") != 0) {
JsonNode *val = here->data_dict.at("offset"); JsonNode *val = here->data_dict.at("offset");
if (val->type == 'N') if (val->type == 'N')
start_offset = val->data_number; start_offset = val->data_number;
} }
if (here->data_dict.count("bits")) { if (here->data_dict.count("bits")) {
JsonNode *bits = here->data_dict.at("bits"); JsonNode *bits = here->data_dict.at("bits");
assert(bits->type == 'A'); assert(bits->type == 'A');