From fdb9b745eaacce2cb1b0bb20fdcef35dc34f189e Mon Sep 17 00:00:00 2001 From: Houtan Bastani Date: Mon, 16 Oct 2017 17:52:47 +0200 Subject: [PATCH] preprocessor: json: change model keyword to modfile --- ModFile.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ModFile.cc b/ModFile.cc index c03a8696..625c1c84 100644 --- a/ModFile.cc +++ b/ModFile.cc @@ -1385,9 +1385,9 @@ ModFile::writeJsonOutputParsingCheck(const string &basename, JsonFileOutputType if (json_output_mode == standardout) { if (transformpass || computingpass) - cout << "\"transformed_model\": "; + cout << "\"transformed_modfile\": "; else - cout << "\"model\": "; + cout << "\"modfile\": "; cout << output.str(); if (!original_model_output.str().empty()) cout << ", \"original_model\": " << original_model_output.str();